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 <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2012-05-06 18:52:00 +02:00
parent f252746e86
commit 95d46f2e32
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ end
--- Set the client as slave: put it at the end of other windows. --- Set the client as slave: put it at the end of other windows.
-- @param c The window to set as slave. -- @param c The window to set as slave.
function setslave(c) function setslave(c)
local cls = capi.client.get(screen) local cls = capi.client.get(c.screen)
for k, v in pairs(cls) do for k, v in pairs(cls) do
c:swap(v) c:swap(v)
end end