summaryrefslogtreecommitdiffstats
path: root/XMonad/Layout.hs
diff options
context:
space:
mode:
Diffstat (limited to 'XMonad/Layout.hs')
-rw-r--r--XMonad/Layout.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/XMonad/Layout.hs b/XMonad/Layout.hs
index faa2246..a8821d5 100644
--- a/XMonad/Layout.hs
+++ b/XMonad/Layout.hs
@@ -53,7 +53,8 @@ instance LayoutClass Full a
-- 'IncMasterN'.
data Tall a = Tall { tallNMaster :: !Int -- ^ The default number of windows in the master pane (default: 1)
, 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)
+ , tallRatio :: !Rational -- ^ Default proportion of screen occupied by master pane (default: 1/2)
+ }
deriving (Show, Read)
-- TODO should be capped [0..1] ..