From 656bc8e522f055c3c171d9f637eea225ba8bd291 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 1 Feb 2022 15:11:35 -0300 Subject: [PATCH] Force integer comparison --- scripts/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/common.sh b/scripts/common.sh index c6ed013..a5e1902 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -204,7 +204,7 @@ calcWidthDialog() { ((count++)) done < <(echo -ne "$1") [ $option -ge "$count" ] && count=option - [ $count -gt 60 ] && echo 60 || echo $((count+4)) + [ $((count)) -gt 60 ] && echo 60 || echo $((count+4)) } calcHeight() {