* 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:
4
debian/changelog
vendored
4
debian/changelog
vendored
@ -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
|
||||
|
||||
|
20
debian/patches/01_unset_AT_SPI_BUS-X11-property.patch
vendored
Normal file
20
debian/patches/01_unset_AT_SPI_BUS-X11-property.patch
vendored
Normal 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;
|
||||
}
|
||||
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@ -1 +1,2 @@
|
||||
01_unset_AT_SPI_BUS-X11-property.patch
|
||||
04_default-gtk-greeter-config.patch
|
||||
|
Reference in New Issue
Block a user