mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 21:32:36 +01:00
fix: restore width to dialogs
This commit is contained in:
parent
d8e7144ea8
commit
7a16c94072
1 changed files with 4 additions and 4 deletions
8
dzgui.sh
8
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -o pipefail
|
||||
version=4.0.0-rc.2
|
||||
version=4.0.0-rc.3
|
||||
|
||||
aid=221100
|
||||
game="dayz"
|
||||
|
@ -1822,13 +1822,13 @@ pdialog(){
|
|||
$steamsafe_zenity --progress --pulsate --auto-close --title="DZGUI" --width=500 2>/dev/null
|
||||
}
|
||||
edialog(){
|
||||
$steamsafe_zenity --entry --text="$1" --title="DZGUI" 2>/dev/null
|
||||
$steamsafe_zenity --entry --text="$1" --width=500 --title="DZGUI" 2>/dev/null
|
||||
}
|
||||
tdialog(){
|
||||
$steamsafe_zenity --info --text="$1" --title="DZGUI" 2>/dev/null
|
||||
$steamsafe_zenity --info --text="$1" --width=500 --title="DZGUI" 2>/dev/null
|
||||
}
|
||||
qdialog(){
|
||||
$steamsafe_zenity --question --text="$1" --title="DZGUI" 2>/dev/null
|
||||
$steamsafe_zenity --question --text="$1" --width=500 --title="DZGUI" 2>/dev/null
|
||||
}
|
||||
add_by_id(){
|
||||
local mode="$1"
|
||||
|
|
Loading…
Reference in a new issue