aboutsummaryrefslogtreecommitdiffstats
path: root/NoBorders.hs
diff options
context:
space:
mode:
authorl.mai <l.mai@web.de>2007-10-11 04:17:56 +0200
committerl.mai <l.mai@web.de>2007-10-11 04:17:56 +0200
commit8e34fb953c3fc80a23a15e79f1a696b62c226f7d (patch)
tree275e1953fcaea19d68953954bd81aab2d52f1500 /NoBorders.hs
parentcea13d71e7ceb1742d60ceec512d33fa2ffa7635 (diff)
downloadXMonadContrib-8e34fb953c3fc80a23a15e79f1a696b62c226f7d.tar.gz
XMonadContrib-8e34fb953c3fc80a23a15e79f1a696b62c226f7d.tar.xz
XMonadContrib-8e34fb953c3fc80a23a15e79f1a696b62c226f7d.zip
NoBorders bugfix (I hope)
David Roundy should probably have a look at this, but this change makes sense to me. Plus it makes NoBorders work in combination with SwitchTrans. :-) darcs-hash:20071011021756-42ea9-2d61edad94df2fc1dca1d9aaf6df780b4b4caaf8.gz
Diffstat (limited to 'NoBorders.hs')
-rw-r--r--NoBorders.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/NoBorders.hs b/NoBorders.hs
index 16bd534..5419eeb 100644
--- a/NoBorders.hs
+++ b/NoBorders.hs
@@ -58,7 +58,7 @@ instance LayoutModifier WithBorder Window where
unhook (WithBorder _ s) = setBorders borderWidth s
redoLayout (WithBorder n s) _ _ wrs = do
- setBorders borderWidth (ws \\ s)
+ setBorders borderWidth (s \\ ws)
setBorders n ws
return (wrs, Just $ WithBorder n ws)
where