diff options
author | David Roundy <droundy@darcs.net> | 2008-02-04 01:53:50 +0100 |
---|---|---|
committer | David Roundy <droundy@darcs.net> | 2008-02-04 01:53:50 +0100 |
commit | 4694cbf5491da9ea3733246e39d1328339453e84 (patch) | |
tree | 098583b376480392bc11bfc9a01443ac9b0f9ceb /XMonad | |
parent | 354eefc902f0074a18bb3f0c6d27304203927df4 (diff) | |
download | XMonadContrib-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 'XMonad')
-rw-r--r-- | XMonad/Layout/Tabbed.hs | 5 |
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) |