From 95d46f2e320f340ec9d10047dc730a2b5d7302bf Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sun, 6 May 2012 18:52:00 +0200 Subject: [PATCH] Fix a typo in commit fa1ca8070 In commit "awful.client.setslave: Fix for not-visible clients", I copied some code from awful.client.visible(). However, I missed that I where supposed to change something in the code that I had copied. Whoops. Signed-off-by: Uli Schlachter --- lib/awful/client.lua.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/awful/client.lua.in b/lib/awful/client.lua.in index ccfe575f..f5d87049 100644 --- a/lib/awful/client.lua.in +++ b/lib/awful/client.lua.in @@ -412,7 +412,7 @@ end --- Set the client as slave: put it at the end of other windows. -- @param c The window to set as slave. function setslave(c) - local cls = capi.client.get(screen) + local cls = capi.client.get(c.screen) for k, v in pairs(cls) do c:swap(v) end -- 2.11.4.GIT