This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16.
View the commit online.
commit f89e5844cdffa087a083a1fb415ddada6529321b
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Sun Oct 22 09:24:34 2023 +0200
CM: Don't do _NET_WM_CM_Sn acquisition in window mode
---
src/ecompmgr.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/src/ecompmgr.c b/src/ecompmgr.c
index b72c96d2..e72792e5 100644
--- a/src/ecompmgr.c
+++ b/src/ecompmgr.c
@@ -2193,9 +2193,12 @@ ECompMgrStart(void)
if (Mode_compmgr.active || Conf_compmgr.mode == ECM_MODE_OFF)
return;
- wm_cm_sel = SelectionAcquire("_NET_WM_CM_S", NULL, NULL);
- if (!wm_cm_sel)
- return;
+ if (!Mode.wm.window)
+ {
+ wm_cm_sel = SelectionAcquire("_NET_WM_CM_S", NULL, NULL);
+ if (!wm_cm_sel)
+ return;
+ }
Mode_compmgr.mode = Conf_compmgr.mode;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.