From 0f4dbed5990522433cbe0739c49e67eb3511b6e1 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Tue, 11 Jan 2022 18:50:42 +0900 Subject: [PATCH] Update case statement --- dztui.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dztui.sh b/dztui.sh index 8535d80..e4f7fd5 100644 --- a/dztui.sh +++ b/dztui.sh @@ -247,7 +247,7 @@ main(){ checks init_table while true; do - printf "\n" + menu read -p "Selection: " sel if [[ $sel =~ ^[0-9]+$ ]]; then if [[ $sel -gt $max_range ]]; then @@ -261,7 +261,7 @@ main(){ r) init_table ;; f) launch_fav ;; l) list_mods ;; - q) exit ;; + q) exit_msg ;; *) : ;; esac fi