mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
[Script] Fix next dialog option.
Error slipped in from previous patch. Issue: #1059
This commit is contained in:
parent
03775378e0
commit
c458047ef6
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ static ModeMode script_mode_result ( Mode *sw, int mretv, char **input, unsigned
|
||||||
unsigned int new_length = 0;
|
unsigned int new_length = 0;
|
||||||
|
|
||||||
if ( ( mretv & MENU_NEXT ) ) {
|
if ( ( mretv & MENU_NEXT ) ) {
|
||||||
retv = RELOAD_DIALOG;;
|
retv = NEXT_DIALOG;
|
||||||
}
|
}
|
||||||
else if ( ( mretv & MENU_PREVIOUS ) ) {
|
else if ( ( mretv & MENU_PREVIOUS ) ) {
|
||||||
retv = PREVIOUS_DIALOG;
|
retv = PREVIOUS_DIALOG;
|
||||||
|
|
Loading…
Reference in a new issue