equal signs before ALL yad options

This commit is contained in:
sose 2019-01-29 16:04:35 -08:00
parent 355cb93945
commit 3d84a8f7e7
2 changed files with 14 additions and 13 deletions

View File

@ -24,6 +24,7 @@ Part of TildeLinux.
- Error handling for file creation
- Alert user if (local) directory they are trying to link to already contains a link
- The exit and cancel buttons should do the same thing
- A way to cleanly unlink directories
### ChangeLog

View File

@ -42,10 +42,10 @@ error_box() {
yad \
--posx="$mouse_x" \
--posy="$mouse_y" \
--width 250 \
--image "dialog-error" \
--title "Error!" \
--text "$error_text" \
--width=250 \
--image="dialog-error" \
--title="Error!" \
--text="$error_text" \
--button="OK":0
}
@ -54,10 +54,10 @@ succ_box() {
yad \
--posx="$mouse_x" \
--posy="$mouse_y" \
--width 250 \
--image "dialog-info" \
--title "Success!" \
--text "$succ_text" \
--width=250 \
--image="dialog-info" \
--title="Success!" \
--text="$succ_text" \
--button="OK":0
}
@ -66,10 +66,10 @@ dec_box() {
yad \
--posx="$mouse_x" \
--posy="$mouse_y" \
--width 250 \
--image "dialog-error" \
--title "Error!" \
--text "$error_text" \
--width=250 \
--image="dialog-error" \
--title="Error!" \
--text="$error_text" \
--button="No":1 \
--button="Yes":0
return $?
@ -84,7 +84,7 @@ info_box() {
--width=250 \
--image="dialog-info" \
--title="Info" \
--text "$info_text"
--text="$info_text"
}
get_info() {