diff options
author | Don Stewart <dons@galois.com> | 2008-03-22 00:40:15 +0100 |
---|---|---|
committer | Don Stewart <dons@galois.com> | 2008-03-22 00:40:15 +0100 |
commit | f08988053ef6bbc8cc14290cac54c33e05197c2f (patch) | |
tree | cbab5f70c9d127623fcf087ee8e312eecb210834 /XMonad | |
parent | db6fce0a3d733402fab4f1fe6f5bf4ed40c6c082 (diff) | |
download | metatile-f08988053ef6bbc8cc14290cac54c33e05197c2f.tar metatile-f08988053ef6bbc8cc14290cac54c33e05197c2f.zip |
reenable quickcheck properties for layouts (no overlap, fullscreen)
darcs-hash:20080321234015-cba2c-56ead600613e43978a996f82991d6e5a6f4ca962
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Layout.hs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/XMonad/Layout.hs b/XMonad/Layout.hs index a7f9acb..7aca43a 100644 --- a/XMonad/Layout.hs +++ b/XMonad/Layout.hs @@ -15,9 +15,14 @@ -- ----------------------------------------------------------------------------- -module XMonad.Layout (ChangeLayout(..), Choose, (|||), Resize(..), IncMasterN(..), - Full(..), Tall(..), Mirror(..), mirrorRect, splitVertically, - splitHorizontally, splitHorizontallyBy, splitVerticallyBy) where +module XMonad.Layout ( + ChangeLayout(..), Choose, (|||), Resize(..), IncMasterN(..), + Full(..), Tall(..), Mirror(..), mirrorRect, splitVertically, + splitHorizontally, splitHorizontallyBy, splitVerticallyBy, + + tile + + ) where import XMonad.Core |