From dcdd60382fbb02739bedfa2c4df4b59c9472868c Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 8 Oct 2015 00:12:00 +0200 Subject: [PATCH] Raise client in awful.client.movetoscreen The intention of [#98] / fbc72624 was to actually raise the client, but that was never the case apparently, and got totally lost in [#441] / 57755b3. [#98]: https://github.com/awesomeWM/awesome/pull/98 [#441]: https://github.com/awesomeWM/awesome/pull/441 --- lib/awful/client.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/awful/client.lua b/lib/awful/client.lua index ac4c13ede..ab9e45962 100644 --- a/lib/awful/client.lua +++ b/lib/awful/client.lua @@ -549,7 +549,7 @@ function client.movetoscreen(c, s) if sel_is_focused then sel:emit_signal("request::activate", "client.movetoscreen", - {raise=false}) + {raise=true}) end end end