Don't toLower the layout description.

If we'd really like lower case layout descriptions, the 'description' method
in the LayoutClass instances should be changed instead.
This commit is contained in:
Spencer Janssen
2007-10-17 20:29:53 +00:00
parent fa81ef9e07
commit 9ef8512291

View File

@@ -42,7 +42,6 @@ import Data.Ord ( comparing )
import qualified StackSet as S
import Data.Monoid
import XMonadContrib.NamedWindows
import Data.Char
-- $usage
--
@@ -87,7 +86,7 @@ dynamicLog :: X ()
dynamicLog = withWindowSet $ \ws -> do
let ld = description . S.layout . S.workspace . S.current $ ws
wn = pprWindowSet ws
io . putStrLn $ concat [wn ," : " ,map toLower ld]
io . putStrLn $ concat [wn ," : " ,ld]
-- | Appends title of currently focused window to log output, and the
-- current layout mode, to the normal dynamic log format.