summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-06-07 10:34:42 +0200
committerraveit65 <[email protected]>2016-06-08 10:38:14 +0200
commite14d3305b6ea36bb68db6c410494824e3c64ab5d (patch)
treeca5d1febf471a4e99f9cf361e36b062a9a75f73f
parent5c06a163739d2d8c55a5019e12d5f53f3c1bf709 (diff)
downloadmate-panel-e14d3305b6ea36bb68db6c410494824e3c64ab5d.tar.bz2
mate-panel-e14d3305b6ea36bb68db6c410494824e3c64ab5d.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
-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;
}