From 172d422efb928ec7c697b420074cd1b6f764d29a Mon Sep 17 00:00:00 2001 From: Andrea Rossato Date: Tue, 19 Feb 2008 16:51:27 +0000 Subject: [PATCH] LayoutHints: fix a wrong fix The case analisys of my fix should be the other way around... this is the real fix. --- XMonad/Layout/LayoutHints.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XMonad/Layout/LayoutHints.hs b/XMonad/Layout/LayoutHints.hs index 6442934d..f8aa47b8 100644 --- a/XMonad/Layout/LayoutHints.hs +++ b/XMonad/Layout/LayoutHints.hs @@ -60,4 +60,4 @@ instance LayoutModifier LayoutHints Window where withDisplay $ \disp -> do sh <- io $ getWMNormalHints disp w let (c',d') = adjBorders 1 bW . applySizeHints sh . adjBorders bW (-1) $ (c,d) - return (w, if isInStack s w then r else Rectangle a b c' d') + return (w, if isInStack s w then Rectangle a b c' d' else r)