mirror of
https://github.com/lbonn/rofi
synced 2024-11-14 16:17:11 +00:00
Fix check being the wrong way around.
This commit is contained in:
parent
425f8d1cd6
commit
4f3c7f122e
1 changed files with 1 additions and 1 deletions
|
@ -679,7 +679,7 @@ static void rofi_view_nav_row_tab ( RofiViewState *state )
|
|||
*/
|
||||
inline static void rofi_view_nav_row_select ( RofiViewState *state )
|
||||
{
|
||||
if ( state->list_view ) {
|
||||
if ( state->list_view == NULL ) {
|
||||
return;
|
||||
}
|
||||
unsigned int selected = listview_get_selected ( state->list_view );
|
||||
|
|
Loading…
Reference in a new issue