From cfbd8659375de4a28144dc0f4fde57cfe5d07f14 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sun, 7 Sep 2025 09:29:43 +0200 Subject: [PATCH] Update share-common.func --- scripts/global/share-common.func | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/global/share-common.func b/scripts/global/share-common.func index 513a2e8..fe9f2bf 100644 --- a/scripts/global/share-common.func +++ b/scripts/global/share-common.func @@ -375,7 +375,7 @@ select_host_directory__() { select_host_directory() { local method result - method=$(dialog --title "$(translate "Select Host Directory")" \ + method=$(whiptail --title "$(translate "Select Host Directory")" \ --menu "$(translate "How do you want to select the HOST folder to mount?")" 15 70 4 \ "mnt" "$(translate "Select from /mnt directories")" \ "manual" "$(translate "Enter path manually")" \ @@ -396,7 +396,7 @@ select_host_directory() { return 1 fi - result=$(dialog --title "$(translate "Select Host Folder")" \ + result=$(whiptail --title "$(translate "Select Host Folder")" \ --menu "$(translate "Select the folder to mount:")" 20 80 10 \ "${options[@]}" 3>&1 1>&2 2>&3) || return 1 ;;