From db885cbfbba4603b50095a6d2b456e88139ddfdb Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sat, 6 Aug 2022 20:03:54 +0100 Subject: [PATCH] ask_yesno: fix size of whiptail box --- src/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.sh b/src/run.sh index c9dd6f2..86a8429 100755 --- a/src/run.sh +++ b/src/run.sh @@ -52,7 +52,7 @@ fi ask_yesno() { local question="$1"; - whiptail --title "Step ${step_current} / ${step_max}" --yesno "${question}" 40 8; + whiptail --title "Step ${step_current} / ${step_max}" --yesno "${question}" 8 40; return "$?"; # Not actually needed, but best to be explicit } # Asks the user for a string of text.