This is an automated email from the git hooks/post-receive script. o c h o s i p u s h e d a c o m m i t t o b r a n c h m a s t e r in repository xfce/xfce4-settings.
commit aef738d71f14113c88e9890197c02a73f56bdda3 Author: Simon Steinbeiss <[email protected]> Date: Mon Aug 13 23:36:08 2018 +0200 display: Disconnect the focus-in and focus-out events Otherwise the widget focus features are broken. The display identity popups are not automatically hidden when the display settings dialog loses focus. --- dialogs/display-settings/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dialogs/display-settings/main.c b/dialogs/display-settings/main.c index 81a677e..55bd5b9 100644 --- a/dialogs/display-settings/main.c +++ b/dialogs/display-settings/main.c @@ -2997,9 +2997,9 @@ display_settings_show_main_dialog (GdkDisplay *display) RRNotify + 1); gdk_window_add_filter (gdk_get_default_root_window (), screen_on_event, builder); - /* Show/Hide the helper popups when the dialog is shown/hidden */ + /* Show/Hide the helper popups when the dialog is shown/hidden g_signal_connect(G_OBJECT(dialog), "focus-out-event", G_CALLBACK (focus_out_event), builder); - g_signal_connect(G_OBJECT(dialog), "focus-in-event", G_CALLBACK (focus_in_event), builder); + g_signal_connect(G_OBJECT(dialog), "focus-in-event", G_CALLBACK (focus_in_event), builder); */ app = g_new0 (App, 1); -- To stop receiving notification emails like this one, please contact the administrator of this repository. _______________________________________________ Xfce4-commits mailing list [email protected] https://mail.xfce.org/mailman/listinfo/xfce4-commits
