From 0292c8e4f51353a6e462d3f9301c00e40aac75dc Mon Sep 17 00:00:00 2001 From: David Roundy Date: Wed, 14 Nov 2007 21:01:39 +0000 Subject: [PATCH] fix bug in LayoutCombinators. --- XMonad/Layout/LayoutCombinators.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/XMonad/Layout/LayoutCombinators.hs b/XMonad/Layout/LayoutCombinators.hs index f9b37fd1..1ead505d 100644 --- a/XMonad/Layout/LayoutCombinators.hs +++ b/XMonad/Layout/LayoutCombinators.hs @@ -47,8 +47,8 @@ infixr 6 <||>, , <-||>, <-//>, <||->, , <|>, <-|>, <|->, , <-/>, ) = combineTwo (dragPane Vertical 0.1 0.2) (<||->) = combineTwo (dragPane Vertical 0.1 0.8) () = combineTwo (dragPane Horizontal 0.1 0.5) -(<-//>) = combineTwo (dragPane Horizontal 0.1 0.2) -() = combineTwo (dragPane Horizontal 0.1 0.8) +(<-//>) = combineTwo (dragPane Horizontal 0.1 0.8) +() = combineTwo (dragPane Horizontal 0.1 0.2) (<|>) = combineTwo (Tall 1 0.1 0.5) (<-|>) = combineTwo (Tall 1 0.1 0.8) (<|->) = combineTwo (Tall 1 0.1 0.1)