diff options
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Layout.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/XMonad/Layout.hs b/XMonad/Layout.hs index 2c97a75..0eb1ab5 100644 --- a/XMonad/Layout.hs +++ b/XMonad/Layout.hs @@ -51,9 +51,9 @@ instance LayoutClass Full a -- | The builtin tiling mode of xmonad. Supports 'Shrink', 'Expand' and -- 'IncMasterN'. -data Tall a = Tall !Int -- ^ The default number of windows in the master pane (default: 1) - !Rational -- ^ Default proportion of screen occupied by master pane (default: 1/2) - !Rational -- ^ Percent of screen to increment by when resizing panes (default: 3/100) +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) deriving (Show, Read) -- TODO should be capped [0..1] .. |