summaryrefslogtreecommitdiffstats
path: root/Config.hs
diff options
context:
space:
mode:
authorDavid Roundy <droundy@darcs.net>2007-09-14 23:59:59 +0200
committerDavid Roundy <droundy@darcs.net>2007-09-14 23:59:59 +0200
commit6ba134c9e54d42c189d60a924c27921739b7c197 (patch)
tree36a2db2018d52bf48ec4b3649f3bc1b5e15f772f /Config.hs
parenta576ec8b32e15da3068518c867c92f208cdac293 (diff)
downloadmetatile-6ba134c9e54d42c189d60a924c27921739b7c197.tar
metatile-6ba134c9e54d42c189d60a924c27921739b7c197.zip
move Layout stuff into class (hokey first cut).
darcs-hash:20070914215959-72aca-3feae03a6560a70908ad37d28f47c8d47321008e
Diffstat (limited to 'Config.hs')
-rw-r--r--Config.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Config.hs b/Config.hs
index 9b02a92..8c55961 100644
--- a/Config.hs
+++ b/Config.hs
@@ -92,10 +92,10 @@ borderWidth = 1
-- |
-- The default set of tiling algorithms
--
-defaultLayouts :: [Layout Window]
-defaultLayouts = [ tiled
- , mirror tiled
- , full
+defaultLayouts :: [SomeLayout Window]
+defaultLayouts = [ SomeLayout tiled
+ , SomeLayout $ mirror tiled
+ , SomeLayout full
-- Extension-provided layouts
]