diff options
author | David Roundy <droundy@darcs.net> | 2007-11-14 22:01:39 +0100 |
---|---|---|
committer | David Roundy <droundy@darcs.net> | 2007-11-14 22:01:39 +0100 |
commit | 68d7272d18e817557efbddcd7096b263d879c0c8 (patch) | |
tree | a791611cad542aabcf85e3f762572aaeca73262a | |
parent | 89bb183c755b5d2afb77319288c7226554a3fc56 (diff) | |
download | XMonadContrib-68d7272d18e817557efbddcd7096b263d879c0c8.tar.gz XMonadContrib-68d7272d18e817557efbddcd7096b263d879c0c8.tar.xz XMonadContrib-68d7272d18e817557efbddcd7096b263d879c0c8.zip |
fix bug in LayoutCombinators.
darcs-hash:20071114210139-72aca-208681e36f56a485e7fbd8b1345bcc66be6d4bbb.gz
Diffstat (limited to '')
-rw-r--r-- | XMonad/Layout/LayoutCombinators.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Layout/LayoutCombinators.hs b/XMonad/Layout/LayoutCombinators.hs index f9b37fd..1ead505 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) |