Update checkCancel()
This commit is contained in:
parent
a94f383b4d
commit
75a9ccdfb4
|
@ -233,11 +233,9 @@ calcHeightDialog() {
|
|||
}
|
||||
|
||||
checkCancel() {
|
||||
if [ $? -eq 1 ]; then
|
||||
displayDialogBox --msgbox "$1" VALUES
|
||||
return 0
|
||||
fi
|
||||
return 1
|
||||
[ $? -eq 0 ] && return 1
|
||||
displayDialogBox --msgbox "$1" VALUES
|
||||
return 0
|
||||
}
|
||||
|
||||
setDialogBox() {
|
||||
|
|
Loading…
Reference in New Issue