Skip to content

Commit

Permalink
The width of the forms has been increased
Browse files Browse the repository at this point in the history
  • Loading branch information
bigbigmdm committed Mar 8, 2024
1 parent 2a0d6b8 commit b2ba0dc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions IMSProg_programmer/other/IMSProg_database_update
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/bash
if [ -f ~/.local/share/imsprog/IMSProg.Dat ] ; then
zenity --question --text="The IMSProg.Dat file will be replaced with the new version. You may lose the changes made to it. Continue?" --ok-label="Yes" --cancel-label="No"
zenity --question --text="The IMSProg.Dat file will be replaced with the new version. You may lose the changes made to it. Continue?" \
--ok-label="Yes" --cancel-label="No" \
--height=160 --width=320
fi
if [ $? = 0 ] ; then
IMSPROG_DB_URL=https://antenna-dvb-t2.ru/dl_all/IMSProg.Dat
Expand All @@ -20,6 +22,7 @@ echo $oldrec "->" $newrec
zenity --warning \
--text="The number of chips in the database:\n\n$out_text" \
--title="Database update" \
--icon-name='applications-electronics'
--icon-name='applications-electronics' \
--height=160 --width=320
fi

0 comments on commit b2ba0dc

Please sign in to comment.