summaryrefslogtreecommitdiffstats
path: root/source/xfce/xfwm4/0001-compositor-Ignore-XError-when-changing-background-pi.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2021-01-15 19:37:22 +0000
committer Eric Hameleers <alien@slackware.com>2021-01-16 08:59:49 +0100
commitcdbbea4bb74a0bfd04f1484609c725d222b40abd (patch)
tree6ada61c286ae383f4fef546174ecb58fa76f2eba /source/xfce/xfwm4/0001-compositor-Ignore-XError-when-changing-background-pi.patch
parentec86cffd8eec12d657afec63d5da1ad84b43d510 (diff)
downloadcurrent-cdbbea4bb74a0bfd04f1484609c725d222b40abd.tar.gz
current-cdbbea4bb74a0bfd04f1484609c725d222b40abd.tar.xz
Fri Jan 15 19:37:22 UTC 202120210115193722
a/elogind-246.9.2-x86_64-1.txz: Upgraded. a/minicom-2.8-x86_64-1.txz: Upgraded. kde/kdiagram-2.8.0-x86_64-1.txz: Upgraded. n/getmail-6.14-x86_64-1.txz: Upgraded. n/nftables-0.9.7-x86_64-2.txz: Rebuilt. Rebuilt using --with-python-bin=python3. Thanks to walecha. xfce/xfwm4-4.16.1-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/xfce/xfwm4/0001-compositor-Ignore-XError-when-changing-background-pi.patch')
-rw-r--r--source/xfce/xfwm4/0001-compositor-Ignore-XError-when-changing-background-pi.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/source/xfce/xfwm4/0001-compositor-Ignore-XError-when-changing-background-pi.patch b/source/xfce/xfwm4/0001-compositor-Ignore-XError-when-changing-background-pi.patch
deleted file mode 100644
index 200432b31..000000000
--- a/source/xfce/xfwm4/0001-compositor-Ignore-XError-when-changing-background-pi.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 56d273ee48fffc7fed67ec7b22afd8e4b1c23c6e Mon Sep 17 00:00:00 2001
-From: Olivier Fourdan <fourdan@xfce.org>
-Date: Fri, 25 Dec 2020 18:39:52 +0100
-Subject: [PATCH] compositor: Ignore XError when changing background picture
-
-If xfwm4 is compiled with support for the root pixmap in the compositor,
-changing the background image may cause an XError if the external pixmap
-is already freed.
-
-Guard against such XError.
-
-Signed-off-by: Olivier Fourdan <fourdan@xfce.org>
-Closes: https://gitlab.xfce.org/xfce/xfwm4/-/issues/476
----
- src/compositor.c | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/src/compositor.c b/src/compositor.c
-index 9c5ceb454..8ff0dad42 100644
---- a/src/compositor.c
-+++ b/src/compositor.c
-@@ -3774,8 +3774,11 @@ compositorHandlePropertyNotify (DisplayInfo *display_info, XPropertyEvent *ev)
- ScreenInfo *screen_info = myDisplayGetScreenFromRoot (display_info, ev->window);
- if ((screen_info) && (screen_info->compositor_active) && (screen_info->rootTile))
- {
-+ myDisplayErrorTrapPush (display_info);
- XClearArea (display_info->dpy, screen_info->output, 0, 0, 0, 0, TRUE);
- XRenderFreePicture (display_info->dpy, screen_info->rootTile);
-+ myDisplayErrorTrapPopIgnored (display_info);
-+
- screen_info->rootTile = None;
- damage_screen (screen_info);
-
---
-2.29.2
-