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:
Benjamin Otte 2019-01-26 15:07:52 +01:00
parent ad3ded7ba0
commit c593f86ac6

View File

@ -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: