From 2621f3f6a870f1a8f57227e08baaabeb6b6ee50f Mon Sep 17 00:00:00 2001 From: Khudyakov Alexey Date: Sat, 16 May 2009 10:47:53 +0000 Subject: [PATCH] Fix for Tall documentation --- XMonad/Layout.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/XMonad/Layout.hs b/XMonad/Layout.hs index 0eb1ab5..96947f5 100644 --- a/XMonad/Layout.hs +++ b/XMonad/Layout.hs @@ -52,8 +52,8 @@ instance LayoutClass Full a -- | The builtin tiling mode of xmonad. Supports 'Shrink', 'Expand' and -- 'IncMasterN'. data Tall a = Tall { tallNMaster :: !Int -- ^ The default number of windows in the master pane (default: 1) - , tallRatio :: !Rational -- ^ Default proportion of screen occupied by master pane (default: 1/2) - , tallRatioIncrement :: !Rational } -- ^ Percent of screen to increment by when resizing panes (default: 3/100) + , tallRatioIncrement :: !Rational -- ^ Percent of screen to increment by when resizing panes (default: 3/100) + , tallRatio :: !Rational } -- ^ Default proportion of screen occupied by master pane (default: 1/2) deriving (Show, Read) -- TODO should be capped [0..1] ..