From fc9284fc5339183265bc072c729ce2c5ea27d26a Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Fri, 14 Mar 2014 22:30:51 +0100 Subject: [PATCH] Drop focus:raise() in magnifier.arrange This is a useful fix in general, but especially after commit 620732a (Remove raise call from mouse.client.move). Ref: https://github.com/awesomeWM/awesome/pull/9#issuecomment-37736135 --- lib/awful/layout/suit/magnifier.lua.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/awful/layout/suit/magnifier.lua.in b/lib/awful/layout/suit/magnifier.lua.in index 3ad0644e..5607f429 100644 --- a/lib/awful/layout/suit/magnifier.lua.in +++ b/lib/awful/layout/suit/magnifier.lua.in @@ -64,7 +64,6 @@ function magnifier.arrange(p) height = geometry.height - focus.border_width * 2 } focus:geometry(g) - focus:raise() if #cls > 1 then geometry.x = area.x @@ -72,7 +71,7 @@ function magnifier.arrange(p) geometry.height = area.height / (#cls - 1) geometry.width = area.width - -- We don't know what the focus window index. Try to find it. + -- We don't know the focus window index. Try to find it. if not fidx then for k, c in ipairs(cls) do if c == focus then -- 2.11.4.GIT