From 087a0baa9eeb8497b35d7d0488e30d170d64307c Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 10 Jan 2023 21:28:04 +0100 Subject: [PATCH] resize boxes --- usr/lib/archboot/installer/btrfs.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/lib/archboot/installer/btrfs.sh b/usr/lib/archboot/installer/btrfs.sh index fc7615d69..fefeee0af 100644 --- a/usr/lib/archboot/installer/btrfs.sh +++ b/usr/lib/archboot/installer/btrfs.sh @@ -197,14 +197,14 @@ _prepare_btrfs_subvolume() { _check_btrfs_subvolume(){ [[ -n "${_DOMKFS}" && "${_FSTYPE}" == "btrfs" ]] && _DETECT_CREATE_FILESYSTEM=1 if [[ -z "$(cat ${_ANSWER})" ]]; then - _dialog --msgbox "ERROR: You have defined an empty name!\nPlease enter another name." 6 60 + _dialog --msgbox "ERROR: You have defined an empty name!\nPlease enter another name." 6 50 _BTRFS_SUBVOLUME="NONE" fi if [[ -z "${_DETECT_CREATE_FILESYSTEM}" && -z "${_ASK_MOUNTPOINTS}" ]]; then _mount_btrfs for i in $(btrfs subvolume list "${_BTRFSMP}" | cut -d " " -f 7); do if echo "${i}" | grep -q "${_BTRFS_SUBVOLUME}"; then - _dialog --msgbox "ERROR: You have defined 2 identical SUBVOLUME names!\nPlease enter another name." 8 60 + _dialog --msgbox "ERROR: You have defined 2 identical SUBVOLUME names!\nPlease enter another name." 6 60 _BTRFS_SUBVOLUME="NONE" fi done @@ -213,7 +213,7 @@ _check_btrfs_subvolume(){ # existing subvolumes _subvolumes_in_use if echo "${_SUBVOLUME_IN_USE}" | grep -Eq "${_BTRFS_SUBVOLUME}"; then - _dialog --msgbox "ERROR: You have defined 2 identical SUBVOLUME names!\nPlease enter another name." 8 60 + _dialog --msgbox "ERROR: You have defined 2 identical SUBVOLUME names!\nPlease enter another name." 6 60 _BTRFS_SUBVOLUME="NONE" fi fi