diff --git a/scripts/common.sh b/scripts/common.sh index 93e1744..ea2e816 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -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() {