From 2af9b4dad4927781a0a440b93992aaf447adbd4c Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Thu, 8 Feb 2024 21:16:07 +0100 Subject: [PATCH] fix menu size --- usr/lib/archboot/installer/quicksetup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/quicksetup.sh b/usr/lib/archboot/installer/quicksetup.sh index 6ef04824b..ade945026 100644 --- a/usr/lib/archboot/installer/quicksetup.sh +++ b/usr/lib/archboot/installer/quicksetup.sh @@ -274,7 +274,7 @@ _autoprepare() { done while [[ -z "${_CHOSENFS}" ]]; do #shellcheck disable=SC2086 - _dialog --title " Filesystem / and /home " --no-cancel --menu "" 14 45 8 ${_FSOPTS} 2>"${_ANSWER}" || return 1 + _dialog --title " Filesystem / and /home " --no-cancel --menu "" 10 45 8 ${_FSOPTS} 2>"${_ANSWER}" || return 1 _FSTYPE=$(cat "${_ANSWER}") _dialog --title " Confirmation " --yesno " Filesystem ${_FSTYPE} will be used for / and /home?" 5 55 && _CHOSENFS=1 done