summaryrefslogtreecommitdiff
path: root/x11-wm/awesome/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-04-28 20:02:04 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-04-28 20:02:04 +0100
commita4e2a46beb5e4858ef27bdedbb0ff6d2ced430ad (patch)
tree852c90a4bf354c30ea66504f70bfab5401fba18d /x11-wm/awesome/files
parent5e8702bcbbed438e6c6cce023e7ef0cc9baa3e02 (diff)
gentoo resync : 28.04.2018
Diffstat (limited to 'x11-wm/awesome/files')
-rw-r--r--x11-wm/awesome/files/awesome-3.5.6-fix-multi-instances-focus.patch29
1 files changed, 0 insertions, 29 deletions
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
deleted file mode 100644
index da306d1fe493..000000000000
--- a/x11-wm/awesome/files/awesome-3.5.6-fix-multi-instances-focus.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-commit 1c27a69131428e9e733374c2a3676ca4ecee45d2
-Author: Kimball Thurston <kdt3rd@gmail.com>
-Date: Tue Dec 22 21:46:17 2015 -0800
-
- Fix focus handling with multiple awesome instances
-
- When there are multiple X11 screens (i.e. :0.0 and :0.1) for zaphod mode
- style X setups, this triggers a refresh of focus when the instance
- running on a particular root receives the mouse
-
- Fixes https://github.com/awesomeWM/awesome/issues/599.
-
-diff --git a/event.c b/event.c
-index db70e2c..80d6bd6 100644
---- a/event.c
-+++ b/event.c
-@@ -554,6 +554,12 @@ event_handle_enternotify(xcb_enter_notify_event_t *ev)
- }
- lua_pop(globalconf.L, 1);
- }
-+ else if (ev->event == globalconf.screen->root) {
-+ /* When there are multiple X screens with awesome running separate
-+ * instances, reset focus.
-+ */
-+ globalconf.focus.need_update = true;
-+ }
- }
-
- /** The focus in event handler.