diff --git a/usr/lib/archboot/installer/partition.sh b/usr/lib/archboot/installer/partition.sh index 911e94d83..cc5f572db 100644 --- a/usr/lib/archboot/installer/partition.sh +++ b/usr/lib/archboot/installer/partition.sh @@ -115,7 +115,7 @@ _partition() { while true; do # Prompt the user with a list of known disks #shellcheck disable=SC2086 - _dialog --menu "Select the disk you want to partition:" 14 55 7 ${_DISKS} 2>"${_ANSWER}" || return 1 + _dialog --menu "Select the disk you want to partition:" 14 45 7 ${_DISKS} 2>"${_ANSWER}" || return 1 _DISK=$(cat "${_ANSWER}") if [[ "${_DISK}" == "OTHER" ]]; then _dialog --inputbox "Enter the full path to the device you wish to partition" 8 65 "/dev/sda" 2>"${_ANSWER}" || _DISK=""