mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
[dmenu] Fix missing - in find_arg
This commit is contained in:
parent
be6fe8ac61
commit
5a5d333fdf
1 changed files with 2 additions and 2 deletions
|
@ -876,8 +876,8 @@ int dmenu_mode_dialog(void) {
|
||||||
pd->multi_select = FALSE;
|
pd->multi_select = FALSE;
|
||||||
pd->ballot_selected = "☑ ";
|
pd->ballot_selected = "☑ ";
|
||||||
pd->ballot_unselected = "☐ ";
|
pd->ballot_unselected = "☐ ";
|
||||||
find_arg_str("ballot-selected-str", &(pd->ballot_selected));
|
find_arg_str("-ballot-selected-str", &(pd->ballot_selected));
|
||||||
find_arg_str("ballot-unselected-str", &(pd->ballot_unselected));
|
find_arg_str("-ballot-unselected-str", &(pd->ballot_unselected));
|
||||||
if (find_arg("-multi-select") >= 0) {
|
if (find_arg("-multi-select") >= 0) {
|
||||||
pd->multi_select = TRUE;
|
pd->multi_select = TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue