diff options
author | Lukas Mai <l.mai@web.de> | 2008-03-20 23:38:16 +0100 |
---|---|---|
committer | Lukas Mai <l.mai@web.de> | 2008-03-20 23:38:16 +0100 |
commit | e0d6d130d309302f13ec7482bad6a60f766d1342 (patch) | |
tree | dd08cb168c057458a305fc96656b327e1b79c608 /XMonad | |
parent | ce87c21ec1ea861ffd6cf6de8ff5c60c298b00ff (diff) | |
download | XMonadContrib-e0d6d130d309302f13ec7482bad6a60f766d1342.tar.gz XMonadContrib-e0d6d130d309302f13ec7482bad6a60f766d1342.tar.xz XMonadContrib-e0d6d130d309302f13ec7482bad6a60f766d1342.zip |
XMonad.Layout.Magnifier: remove references to Data.Ratio.% from documentation
darcs-hash:20080320223816-462cf-a7a69dba102a1d164c88854c1fc8fd0333786402.gz
Diffstat (limited to '')
-rw-r--r-- | XMonad/Layout/Magnifier.hs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/XMonad/Layout/Magnifier.hs b/XMonad/Layout/Magnifier.hs index 1a69a7b..a153909 100644 --- a/XMonad/Layout/Magnifier.hs +++ b/XMonad/Layout/Magnifier.hs @@ -45,14 +45,10 @@ import XMonad.Layout.LayoutModifier -- By default magnifier increases the focused window's size by 1.5. -- You can also use: -- --- > magnifiercz (12%10) +-- > magnifiercz 1.2 -- -- to use a custom level of magnification. You can even make the focused --- window smaller for a pop in effect. Keep in mind, you must --- --- > import Data.Ratio --- --- in order to use rationals (such as @12%10@) in your config. +-- window smaller for a pop in effect. -- -- For more detailed instructions on editing the layoutHook see: -- @@ -142,4 +138,4 @@ fit (Rectangle sx sy sw sh) (Rectangle x y w h) = Rectangle x' y' w' h' h' = min sh h fi :: (Num b, Integral a) => a -> b -fi = fromIntegral
\ No newline at end of file +fi = fromIntegral |