From 8a7a2d56badf51335679d988400d5f9ee6efa327 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sat, 15 Jul 2023 15:06:52 +0200 Subject: [PATCH] menu size --- usr/lib/archboot/installer/mountpoints.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/mountpoints.sh b/usr/lib/archboot/installer/mountpoints.sh index 5963de8b1..1e043cee4 100644 --- a/usr/lib/archboot/installer/mountpoints.sh +++ b/usr/lib/archboot/installer/mountpoints.sh @@ -57,7 +57,7 @@ _select_filesystem() { command -v mkfs.ext3 &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} ext3 Ext3" command -v mkfs.jfs &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} jfs JFS" #shellcheck disable=SC2086 - _dialog --title " Filesystem on ${_DEV} " --no-cancel --menu "" 16 50 13 ${_FSOPTS} 2>"${_ANSWER}" || return 1 + _dialog --title " Filesystem on ${_DEV} " --no-cancel --menu "" 15 50 9 ${_FSOPTS} 2>"${_ANSWER}" || return 1 _FSTYPE=$(cat "${_ANSWER}") }