From a94f383b4df4c902bcfbf32d3c624ae971a360d9 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 25 Jan 2022 00:28:03 -0300 Subject: [PATCH] Add checkCancel --- scripts/common.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/common.sh b/scripts/common.sh index c3bc5d3..93e1744 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -232,6 +232,14 @@ calcHeightDialog() { echo $((4+height)) } +checkCancel() { + if [ $? -eq 1 ]; then + displayDialogBox --msgbox "$1" VALUES + return 0 + fi + return 1 +} + setDialogBox() { export dialogBox=${1} }