summaryrefslogtreecommitdiff
path: root/mate-panel
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-06-07 10:34:42 +0200
committerraveit65 <[email protected]>2016-06-08 10:32:42 +0200
commitf18ef408e34afca9e41b239f4f91857a5016f543 (patch)
treeca5d1febf471a4e99f9cf361e36b062a9a75f73f /mate-panel
parentbdeccee2a86224d2ff19d95e542a7ad48776a0e3 (diff)
downloadmate-panel-f18ef408e34afca9e41b239f4f91857a5016f543.tar.bz2
mate-panel-f18ef408e34afca9e41b239f4f91857a5016f543.tar.xz
fix missing focus for panel widgets
credits and thanks to Joanmarie from orca project fixes partially https://github.com/mate-desktop/mate-panel/issues/441 https://github.com/mate-desktop/mate-panel/issues/440 https://github.com/mate-desktop/mate-panel/issues/444
Diffstat (limited to 'mate-panel')
-rw-r--r--mate-panel/panel-widget.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mate-panel/panel-widget.c b/mate-panel/panel-widget.c
index 2db6fad0..ffa9d3b1 100644
--- a/mate-panel/panel-widget.c
+++ b/mate-panel/panel-widget.c
@@ -460,6 +460,7 @@ panel_widget_class_init (PanelWidgetClass *class)
widget_class->style_set = panel_widget_style_set;
#endif
+ widget_class->focus = panel_widget_real_focus;
container_class->add = panel_widget_cadd;
container_class->remove = panel_widget_cremove;
}