mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Fix return code multi-select
This commit is contained in:
parent
86f63af7a8
commit
08d6d6b685
2 changed files with 2 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
||||||
- Regex matching (#113)
|
- Regex matching (#113)
|
||||||
- Take Screenshot of rofi using keybinding.
|
- Take Screenshot of rofi using keybinding.
|
||||||
Improvements:
|
Improvements:
|
||||||
|
- Fix return code of multi-select.
|
||||||
- Update manpage (#289, #291)
|
- Update manpage (#289, #291)
|
||||||
- Improve speed of reading stdin in dmenu mode.
|
- Improve speed of reading stdin in dmenu mode.
|
||||||
- Correctly handle modifier keys now. Should now support most weird keyboard layouts and switching between them.
|
- Correctly handle modifier keys now. Should now support most weird keyboard layouts and switching between them.
|
||||||
|
|
|
@ -383,6 +383,7 @@ int dmenu_switcher_dialog ( void )
|
||||||
}
|
}
|
||||||
|
|
||||||
do {
|
do {
|
||||||
|
retv = FALSE;
|
||||||
unsigned int next_pos = pd->selected_line;
|
unsigned int next_pos = pd->selected_line;
|
||||||
int mretv = menu ( &dmenu_mode, &input, pd->prompt, &( pd->selected_line ), &next_pos, pd->message );
|
int mretv = menu ( &dmenu_mode, &input, pd->prompt, &( pd->selected_line ), &next_pos, pd->message );
|
||||||
// Special behavior.
|
// Special behavior.
|
||||||
|
|
Loading…
Reference in a new issue