* debian/patches:

- 01_unset_AT_SPI_BUS-X11-property added, unset AT_SPI_BUS property from
   the root window.                                           closes: #760740
This commit is contained in:
Yves-Alexis Perez
2014-11-21 15:56:00 +00:00
parent 76db26c328
commit 6212b0662d
3 changed files with 24 additions and 1 deletions

4
debian/changelog vendored
View File

@ -2,7 +2,9 @@ lightdm-gtk-greeter (1.8.5-2) UNRELEASED; urgency=medium
* debian/control, debian/copyright:
- patch from Artur Rona to fix various lintian warnings. closes: #750901
*
* debian/patches:
- 01_unset_AT_SPI_BUS-X11-property added, unset AT_SPI_BUS property from
the root window. closes: #760740
-- Yves-Alexis Perez <corsac@debian.org> Wed, 11 Jun 2014 21:23:58 +0200

View File

@ -0,0 +1,20 @@
--- a/src/lightdm-gtk-greeter.c.original 2014-10-19 18:30:01.368000000 +0200
+++ b/src/lightdm-gtk-greeter.c 2014-10-19 18:49:46.876000000 +0200
@@ -2803,5 +2803,16 @@
gdk_color_free (default_background_color);
#endif
+ {
+ int screen = XDefaultScreen (display);
+ Window w = RootWindow (display, screen);
+ Atom id = XInternAtom (display, "AT_SPI_BUS", True);
+ if (id != None)
+ {
+ XDeleteProperty (display, w, id);
+ XSync (display, FALSE);
+ }
+ }
+
return EXIT_SUCCESS;
}

View File

@ -1 +1,2 @@
01_unset_AT_SPI_BUS-X11-property.patch
04_default-gtk-greeter-config.patch