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