From 75a9ccdfb45fd6d275efe39bff29d1f787ce05a6 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 25 Jan 2022 00:28:29 -0300 Subject: [PATCH] Update checkCancel() --- scripts/common.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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() {