summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2019-09-09 13:22:43 +0200
committerPeter Palfrader <peter@palfrader.org>2019-09-09 13:22:45 +0200
commit8ee90e648fce6c39a16cddd5d78d0db1c98fc873 (patch)
tree2458756c6290b17671e65db579a32b326e05d5bc /config
parent290a69eb11dd6a62671609b41c9fe682fe177186 (diff)
Also set client.maximized (not just _horizontal or _vertial) to false when we change floating
Some clients start maximized, and as long as they are, one can't change them and even toggling floating didn't do anything since they'd stay maximized.
Diffstat (limited to 'config')
-rw-r--r--config/awesome/rc.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua
index d97fe38..ea1675c 100644
--- a/config/awesome/rc.lua
+++ b/config/awesome/rc.lua
@@ -461,6 +461,7 @@ clientkeys = awful.util.table.join(
if not c.floating then
c.maximized_horizontal = false
c.maximized_vertical = false
+ c.maximized = false
end
end),
awful.key({ modkey, }, "Return", function (c) c:swap(awful.client.getmaster()) end),