aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/DragPane.hs
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@unibz.it>2007-12-24 18:10:20 +0100
committerAndrea Rossato <andrea.rossato@unibz.it>2007-12-24 18:10:20 +0100
commite8d74a86b7e6715242f10f78b35a1bf2c1305238 (patch)
treed7e966b5bd4f2561ce2df5492b134dc3bafd619e /XMonad/Layout/DragPane.hs
parentc6cb52a0bd9b59b1e5c1440d463bf319e0d8ee5d (diff)
downloadXMonadContrib-e8d74a86b7e6715242f10f78b35a1bf2c1305238.tar.gz
XMonadContrib-e8d74a86b7e6715242f10f78b35a1bf2c1305238.tar.xz
XMonadContrib-e8d74a86b7e6715242f10f78b35a1bf2c1305238.zip
Fix isssue 105
issue 105 was due to the fact that tab windows created when bootstrapping the windowset after a restart where managed. Setting the override_redirect attributes to True fixes the issue. Added the possibility to set the override_redirect attribute with XMonad.Util.XUtils.creationNewWindow darcs-hash:20071224171020-32816-74cb79d8000d00c6eb9abdcf71474df5d0d9c735.gz
Diffstat (limited to 'XMonad/Layout/DragPane.hs')
-rw-r--r--XMonad/Layout/DragPane.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Layout/DragPane.hs b/XMonad/Layout/DragPane.hs
index 7e10597..6bb099b 100644
--- a/XMonad/Layout/DragPane.hs
+++ b/XMonad/Layout/DragPane.hs
@@ -131,6 +131,6 @@ doLay mirror (DragPane mw ty delta split) r s = do
newDragWin :: Rectangle -> X Window
newDragWin r = do
let mask = Just $ exposureMask .|. buttonPressMask
- w <- createNewWindow r mask handleColor
+ w <- createNewWindow r mask handleColor False
showWindow w
return w