This is an automated email from the git hooks/post-receive script. b l u e s a b r e 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 b664ea04a235051fb27748bd01a6b7823d671e8b Author: Sean Davis <[email protected]> Date: Tue Oct 23 19:56:53 2018 -0400 Fix scrolling in embedded settings dialogs (Xfce #14285, LP #1653448) --- xfce4-settings-manager/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xfce4-settings-manager/main.c b/xfce4-settings-manager/main.c index 754ce6f..62cc115 100644 --- a/xfce4-settings-manager/main.c +++ b/xfce4-settings-manager/main.c @@ -93,6 +93,10 @@ main(int argc, return EXIT_FAILURE; } + /* Workaround for xinput2's subpixel handling triggering unwanted enter/leave-notify events: + * https://bugs.freedesktop.org/show_bug.cgi?id=92681 */ + g_setenv("GDK_CORE_DEVICE_EVENTS", "1", TRUE); + garcon_set_environment ("XFCE"); dialog = xfce_settings_manager_dialog_new (); -- 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
