openbsd-ports/x11/awesome/patches/patch-lib_awful_client_lua_in
dcoppa 4a237d064c From upstream git:
- Various bugfixes to Lua code.
- Fix a bug causing building with cmake 2.8.4 to fail (remove double
  slashes from icon path names).
2011-03-13 18:07:23 +00:00

15 lines
502 B
Plaintext

$OpenBSD: patch-lib_awful_client_lua_in,v 1.1 2011/03/13 18:07:23 dcoppa Exp $
--- lib/awful/client.lua.in.orig Thu Mar 10 17:14:47 2011
+++ lib/awful/client.lua.in Thu Mar 10 17:16:29 2011
@@ -627,8 +627,8 @@ end
function floating.toggle(c)
local c = c or capi.client.focus
-- If it has been set to floating
- if property.get(c, "floating") then
- floating.set(c, nil)
+ if floating.get(c) then
+ floating.set(c, false)
else
floating.set(c, true)
end