aboutsummaryrefslogtreecommitdiffstats
path: root/Operations.hs
diff options
context:
space:
mode:
authorDavid Roundy <droundy@darcs.net>2007-09-25 19:05:03 +0200
committerDavid Roundy <droundy@darcs.net>2007-09-25 19:05:03 +0200
commit4c37ae203f967d35ecf872d144cccddfe2d4775c (patch)
treed867247a07bc9451a935df3849fc7bb9d3176c68 /Operations.hs
parentecb8d1bb0443573c22a7972cf5c81f19c62ba478 (diff)
downloadxmonad-4c37ae203f967d35ecf872d144cccddfe2d4775c.tar.gz
xmonad-4c37ae203f967d35ecf872d144cccddfe2d4775c.tar.xz
xmonad-4c37ae203f967d35ecf872d144cccddfe2d4775c.zip
make it easier to define pure layouts.
darcs-hash:20070925170503-72aca-22b50fd803b02bb36ca12befdeeb182439395bc8.gz
Diffstat (limited to 'Operations.hs')
-rw-r--r--Operations.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Operations.hs b/Operations.hs
index e03a4ae..a456150 100644
--- a/Operations.hs
+++ b/Operations.hs
@@ -390,8 +390,7 @@ instance Message IncMasterN
-- simple fullscreen mode, just render all windows fullscreen.
-- a plea for tuple sections: map . (,sc)
data Full a = Full deriving ( Show, Read )
-instance Layout Full a where
- doLayout Full sc (W.Stack f _ _) = return ([(f, sc)], Nothing)
+instance Layout Full a
--
-- The tiling mode of xmonad, and its operations.
--