Merge pull request #165 from psychon/unfocus-client

Make client.focus = nil work (Closes #164)
This commit is contained in:
Emmanuel Lepage Vallée 2015-03-14 13:43:06 -04:00
commit 25a750cd4b
1 changed files with 5 additions and 2 deletions

View File

@ -2326,8 +2326,11 @@ luaA_client_module_newindex(lua_State *L)
if (A_STREQ(buf, "focus")) if (A_STREQ(buf, "focus"))
{ {
c = luaA_checkudata(L, 3, &client_class); c = luaA_checkudataornil(L, 3, &client_class);
if (c)
client_focus(c); client_focus(c);
else if (globalconf.focus.client)
client_unfocus(globalconf.focus.client);
} }
return 0; return 0;