Add selected-row option to normal operation.

This commit is contained in:
Dave Davenport 2020-03-29 12:56:47 +02:00
parent 1e4409c6b3
commit d8a0f540f0
1 changed files with 7 additions and 0 deletions

View File

@ -191,6 +191,13 @@ static void run_switcher ( ModeMode mode )
}
curr_switcher = mode;
RofiViewState * state = rofi_view_create ( modi[mode], config.filter, 0, process_result );
// User can pre-select a row.
if ( find_arg ( "-selected-row" ) >= 0 ){
unsigned int sr = 0;
find_arg_uint ( "-selected-row", &(sr) );
rofi_view_set_selected_line ( state, sr );
}
if ( state ) {
rofi_view_set_active ( state );
}