diff options
-rw-r--r-- | src/arctica-greeter.vala | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/arctica-greeter.vala b/src/arctica-greeter.vala index 0369eb7..a0f7824 100644 --- a/src/arctica-greeter.vala +++ b/src/arctica-greeter.vala @@ -595,6 +595,12 @@ public class ArcticaGreeter /* Set up the accessibility stack, in case the user needs it for screen reading etc. */ Environment.set_variable ("GTK_MODULES", "atk-bridge", false); + /* Fix for https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1024482 + Slick-greeter sets the mouse cursor on the root window. + Without GDK_CORE_DEVICE_EVENTS set, the DE is unable to apply its own cursor theme and size. + */ + GLib.Environment.set_variable ("GDK_CORE_DEVICE_EVENTS", "1", true); + Pid atspi_pid = 0; try |