summaryrefslogtreecommitdiff
path: root/gtk/gtkglarea.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-04-08 07:43:28 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-04-09 17:50:29 -0400
commit632524f67954d84e8778b7ce2f2b9c24673b54d8 (patch)
tree2e26d60390c41ebec3cc3b324892f73aee08f54c /gtk/gtkglarea.c
parent22e1827f840044ac19c5a090af8511fe37ffcab7 (diff)
downloadgtk+-632524f67954d84e8778b7ce2f2b9c24673b54d8.tar.gz
Reinstate expected focus behavior
After the :can-focus change in the previous commit, widgets need to set suitable focus and grab_focus implementations to implement the desired focus behavior. This commit does that for all widgets.
Diffstat (limited to 'gtk/gtkglarea.c')
-rw-r--r--gtk/gtkglarea.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkglarea.c b/gtk/gtkglarea.c
index 5ee6eb4d0b..6d8ac8f342 100644
--- a/gtk/gtkglarea.c
+++ b/gtk/gtkglarea.c
@@ -30,6 +30,7 @@
#include "gtkrender.h"
#include "gtksnapshot.h"
#include "gtknative.h"
+#include "gtkwidgetprivate.h"
#include <epoxy/gl.h>
@@ -782,6 +783,8 @@ gtk_gl_area_class_init (GtkGLAreaClass *klass)
widget_class->unrealize = gtk_gl_area_unrealize;
widget_class->size_allocate = gtk_gl_area_size_allocate;
widget_class->snapshot = gtk_gl_area_snapshot;
+ widget_class->focus = gtk_widget_focus_none;
+ widget_class->grab_focus = gtk_widget_grab_focus_none;
gtk_widget_class_set_accessible_role (widget_class, ATK_ROLE_DRAWING_AREA);