aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/Tabbed.hs
diff options
context:
space:
mode:
authorDavid Roundy <droundy@darcs.net>2008-02-04 01:53:50 +0100
committerDavid Roundy <droundy@darcs.net>2008-02-04 01:53:50 +0100
commit4694cbf5491da9ea3733246e39d1328339453e84 (patch)
tree098583b376480392bc11bfc9a01443ac9b0f9ceb /XMonad/Layout/Tabbed.hs
parent354eefc902f0074a18bb3f0c6d27304203927df4 (diff)
downloadXMonadContrib-4694cbf5491da9ea3733246e39d1328339453e84.tar.gz
XMonadContrib-4694cbf5491da9ea3733246e39d1328339453e84.tar.xz
XMonadContrib-4694cbf5491da9ea3733246e39d1328339453e84.zip
switch tabbed back to using Simplest (so tabs will be shown).
darcs-hash:20080204005350-72aca-c0823e2c4a11d249758bc353d8c6d0865acd12c9.gz
Diffstat (limited to '')
-rw-r--r--XMonad/Layout/Tabbed.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/XMonad/Layout/Tabbed.hs b/XMonad/Layout/Tabbed.hs
index 513568c..33596ac 100644
--- a/XMonad/Layout/Tabbed.hs
+++ b/XMonad/Layout/Tabbed.hs
@@ -31,6 +31,7 @@ import Data.List
import XMonad
import qualified XMonad.StackSet as S
import XMonad.Layout.Decoration
+import XMonad.Layout.Simplest ( Simplest(Simplest) )
-- $usage
-- You can use this module with the following in your @~\/.xmonad\/xmonad.hs@:
@@ -57,8 +58,8 @@ import XMonad.Layout.Decoration
-- | This function is deprecated and will be removed before 0.7!!
tabbed :: (Eq a, Shrinker s) => s -> Theme
- -> ModifiedLayout (Decoration TabbedDecoration s) Full a
-tabbed s c = decoration s c Tabbed Full
+ -> ModifiedLayout (Decoration TabbedDecoration s) Simplest a
+tabbed s c = decoration s c Tabbed Simplest
data TabbedDecoration a = Tabbed deriving (Read, Show)