mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Possible fix for #179
This commit is contained in:
parent
90eb18b3c0
commit
ce73f468ca
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ int dmenu_switcher_dialog ( char **input )
|
||||||
retv = TRUE;
|
retv = TRUE;
|
||||||
}
|
}
|
||||||
// Quick switch with entry selected.
|
// Quick switch with entry selected.
|
||||||
else if ( ( mretv & MENU_QUICK_SWITCH ) && selected_line > 0 ) {
|
else if ( ( mretv & MENU_QUICK_SWITCH ) && selected_line >= 0 ) {
|
||||||
dmenu_output_formatted_line ( format, list[selected_line], selected_line, *input );
|
dmenu_output_formatted_line ( format, list[selected_line], selected_line, *input );
|
||||||
|
|
||||||
restart = FALSE;
|
restart = FALSE;
|
||||||
|
|
Loading…
Reference in a new issue