forked from AuroraMiddleware/gtk
notebook: Add missing return statement
Previously, the code would just fall thrrough and repeat an operation it had tried before, but that seems quite unnecessary.
This commit is contained in:
parent
ad3ded7ba0
commit
c593f86ac6
@ -3780,6 +3780,7 @@ gtk_notebook_focus (GtkWidget *widget,
|
||||
return TRUE;
|
||||
if (focus_action_in (notebook, first_action, direction))
|
||||
return TRUE;
|
||||
return FALSE;
|
||||
case GTK_DIR_UP:
|
||||
case GTK_DIR_LEFT:
|
||||
case GTK_DIR_RIGHT:
|
||||
|
Loading…
Reference in New Issue
Block a user