Gentoo Archives: gentoo-commits

From: Maxim Koltsov <maksbotan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/awesome/files/
Date: Sat, 28 Apr 2018 11:29:51
Message-Id: 1524914923.e1cab3f6338b0f166c12c58404c77bd092ed6fd1.maksbotan@gentoo
1 commit: e1cab3f6338b0f166c12c58404c77bd092ed6fd1
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Apr 28 07:50:24 2018 +0000
4 Commit: Maxim Koltsov <maksbotan <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 28 11:28:43 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1cab3f6
7
8 x11-wm/awesome: remove unused patch
9
10 Closes: #8183
11
12 .../awesome-3.5.6-fix-multi-instances-focus.patch | 29 ----------------------
13 1 file changed, 29 deletions(-)
14
15 diff --git a/x11-wm/awesome/files/awesome-3.5.6-fix-multi-instances-focus.patch b/x11-wm/awesome/files/awesome-3.5.6-fix-multi-instances-focus.patch
16 deleted file mode 100644
17 index da306d1fe49..00000000000
18 --- a/x11-wm/awesome/files/awesome-3.5.6-fix-multi-instances-focus.patch
19 +++ /dev/null
20 @@ -1,29 +0,0 @@
21 -commit 1c27a69131428e9e733374c2a3676ca4ecee45d2
22 -Author: Kimball Thurston <kdt3rd@×××××.com>
23 -Date: Tue Dec 22 21:46:17 2015 -0800
24 -
25 - Fix focus handling with multiple awesome instances
26 -
27 - When there are multiple X11 screens (i.e. :0.0 and :0.1) for zaphod mode
28 - style X setups, this triggers a refresh of focus when the instance
29 - running on a particular root receives the mouse
30 -
31 - Fixes https://github.com/awesomeWM/awesome/issues/599.
32 -
33 -diff --git a/event.c b/event.c
34 -index db70e2c..80d6bd6 100644
35 ---- a/event.c
36 -+++ b/event.c
37 -@@ -554,6 +554,12 @@ event_handle_enternotify(xcb_enter_notify_event_t *ev)
38 - }
39 - lua_pop(globalconf.L, 1);
40 - }
41 -+ else if (ev->event == globalconf.screen->root) {
42 -+ /* When there are multiple X screens with awesome running separate
43 -+ * instances, reset focus.
44 -+ */
45 -+ globalconf.focus.need_update = true;
46 -+ }
47 - }
48 -
49 - /** The focus in event handler.