mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-25 13:55:34 -05:00
Fix indenting.
This commit is contained in:
parent
c37ceb3e62
commit
05cab7a37a
1 changed files with 5 additions and 5 deletions
|
@ -2098,8 +2098,8 @@ static void run_switcher ( int do_fork, SwitcherMode mode )
|
||||||
}
|
}
|
||||||
else if ( retv == PREVIOUS_DIALOG ) {
|
else if ( retv == PREVIOUS_DIALOG ) {
|
||||||
mode = ( mode - 1 ) % num_switchers;
|
mode = ( mode - 1 ) % num_switchers;
|
||||||
if(mode < 0) {
|
if ( mode < 0 ) {
|
||||||
mode = num_switchers-1;
|
mode = num_switchers - 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ( retv == RELOAD_DIALOG ) {
|
else if ( retv == RELOAD_DIALOG ) {
|
||||||
|
|
Loading…
Reference in a new issue