Add checkCancel

This commit is contained in:
Santiago Lo Coco 2022-01-25 00:28:03 -03:00
parent 80694b75fc
commit a94f383b4d
1 changed files with 8 additions and 0 deletions

View File

@ -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}
}