1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-25 13:55:34 -05:00

Fix indenting.

This commit is contained in:
Dave Davenport 2014-11-12 17:49:13 +01:00
parent c37ceb3e62
commit 05cab7a37a

View file

@ -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 ) {