From 5cb7cfb6a2fc229411a6f1f108ccf6275f722052 Mon Sep 17 00:00:00 2001 From: Rasmus Steinke Date: Sat, 14 Nov 2015 06:00:28 +0100 Subject: [PATCH] fix typo --- rofi-pass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rofi-pass b/rofi-pass index e1951e7..1ae0909 100755 --- a/rofi-pass +++ b/rofi-pass @@ -246,7 +246,7 @@ actionMenu () { action=$(echo -e "1 Move Password File\n2 Delete Password File\\n3 Edit Password File\n4 Generate New Password" | rofi -dmenu -p "Choose Action > ") if [[ ${action} == "1 Move Password File" ]]; then manageEntry move; elif [[ ${action} == "2 Delete Password File" ]]; then manageEntry delete; - elif [[ ${action} == "4 Edit Password File" ]]; then manageEntry edit; + elif [[ ${action} == "3 Edit Password File" ]]; then manageEntry edit; elif [[ ${action} == "4 Generate New Password" ]]; then generatePass; elif [[ ${action} == "" ]]; then exit fi