ask_yesno: fix size of whiptail box
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 123 after 2 seconds
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 123 after 2 seconds
This commit is contained in:
parent
8cdbd588ee
commit
db885cbfbb
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue