Correct typo in awful.client.restore

This corrects a type in awful.client.restore which caused it not to restore any
client at all  if all clients are minimized.

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Andres Freund 2011-03-01 02:23:18 +01:00 committed by Uli Schlachter
parent 9befc30a7b
commit af6915fda2
1 changed files with 1 additions and 1 deletions

View File

@ -644,7 +644,7 @@ end
-- @param s The screen to use.
-- @return True if some client was restored.
function restore(s)
local s = s or (capi.client.focus and capi.client.focus.screen) or mouse.screen
local s = s or (capi.client.focus and capi.client.focus.screen) or capi.mouse.screen
local cls = capi.client.get(s)
local tags = tag.selectedlist(s)
local mcls = {}