mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05: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 )
|
inline static void rofi_view_nav_row_select ( RofiViewState *state )
|
||||||
{
|
{
|
||||||
if ( state->list_view ) {
|
if ( state->list_view == NULL ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
unsigned int selected = listview_get_selected ( state->list_view );
|
unsigned int selected = listview_get_selected ( state->list_view );
|
||||||
|
|
Loading…
Reference in a new issue