[dmenu] Fix missing - in find_arg

This commit is contained in:
Dave Davenport 2022-07-23 23:25:37 +02:00
parent be6fe8ac61
commit 5a5d333fdf
1 changed files with 2 additions and 2 deletions

View File

@ -876,8 +876,8 @@ int dmenu_mode_dialog(void) {
pd->multi_select = FALSE;
pd->ballot_selected = "";
pd->ballot_unselected = "";
find_arg_str("ballot-selected-str", &(pd->ballot_selected));
find_arg_str("ballot-unselected-str", &(pd->ballot_unselected));
find_arg_str("-ballot-selected-str", &(pd->ballot_selected));
find_arg_str("-ballot-unselected-str", &(pd->ballot_unselected));
if (find_arg("-multi-select") >= 0) {
pd->multi_select = TRUE;
}