Fix key handling and Meson

This commit is contained in:
2021-11-20 14:28:13 +01:00
parent 09547184c3
commit 803f841463
2 changed files with 8 additions and 2 deletions

View File

@@ -405,12 +405,12 @@ on_key_press_view(G_GNUC_UNUSED GtkWidget *widget, GdkEventKey *event,
case GDK_KEY_space:
on_next();
return TRUE;
}
case GDK_KEY_Tab:
case GDK_KEY_Return:
gtk_stack_set_visible_child(GTK_STACK(g.stack), g.browser_paned);
return TRUE;
}
}
return FALSE;
}