aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhudyakov Alexey <alexey.skladnoy@gmail.com>2009-05-16 12:47:53 +0200
committerKhudyakov Alexey <alexey.skladnoy@gmail.com>2009-05-16 12:47:53 +0200
commit72e9daf55356ee794245ea87dd9650667e1006f2 (patch)
tree77d9e833ab4885b42db278c35d2b80990b145f78
parentac15f153c3181a725cc0b4290fe2979e45c221c6 (diff)
downloadxmonad-72e9daf55356ee794245ea87dd9650667e1006f2.tar.gz
xmonad-72e9daf55356ee794245ea87dd9650667e1006f2.tar.xz
xmonad-72e9daf55356ee794245ea87dd9650667e1006f2.zip
Fix for Tall documentation
Ignore-this: ba56921cc5b3be0462c41d10499ccf0e darcs-hash:20090516104753-7ba7e-0d923bddc7747ae13d0b1c44179dfa12c6607075.gz
-rw-r--r--XMonad/Layout.hs4
1 files 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] ..