diff options
author | raveit65 <[email protected]> | 2016-06-07 10:34:42 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-06-08 10:32:42 +0200 |
commit | f18ef408e34afca9e41b239f4f91857a5016f543 (patch) | |
tree | ca5d1febf471a4e99f9cf361e36b062a9a75f73f | |
parent | bdeccee2a86224d2ff19d95e542a7ad48776a0e3 (diff) | |
download | mate-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
-rw-r--r-- | mate-panel/panel-widget.c | 1 |
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; } |