diff options
Diffstat (limited to '')
-rw-r--r-- | XMonad/Layout/SimpleFloat.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Layout/SimpleFloat.hs b/XMonad/Layout/SimpleFloat.hs index 89c3cab..6fe8ebf 100644 --- a/XMonad/Layout/SimpleFloat.hs +++ b/XMonad/Layout/SimpleFloat.hs @@ -61,7 +61,7 @@ data SimpleFloat a = SF Dimension deriving (Show, Read) instance LayoutClass SimpleFloat Window where doLayout (SF i) sc (S.Stack w l r) = do wrs <- mapM (getSize i sc) (w : reverse l ++ r) return (wrs, Nothing) - description _ = "SimpleFloat" + description _ = "Float" getSize :: Dimension -> Rectangle -> Window -> X (Window,Rectangle) getSize i (Rectangle rx ry _ _) w = do |