diff options
author | Andrea Rossato <andrea.rossato@unibz.it> | 2008-02-23 08:55:31 +0100 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@unibz.it> | 2008-02-23 08:55:31 +0100 |
commit | 47b77a72eb1efae1629d53bf4074b321d8bbf9e1 (patch) | |
tree | aaed282e5a2b54793cb902d982336dbfe7f443c0 | |
parent | 06325c7850954999b2bf5732142bcc860a7c6d99 (diff) | |
download | XMonadContrib-47b77a72eb1efae1629d53bf4074b321d8bbf9e1.tar.gz XMonadContrib-47b77a72eb1efae1629d53bf4074b321d8bbf9e1.tar.xz XMonadContrib-47b77a72eb1efae1629d53bf4074b321d8bbf9e1.zip |
PerWorksapce: use a safer False as default
darcs-hash:20080223075531-32816-a18f5ed0ee94548710f84cf343f10f37867bb98b.gz
-rw-r--r-- | XMonad/Layout/PerWorkspace.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Layout/PerWorkspace.hs b/XMonad/Layout/PerWorkspace.hs index ea3bcd6..36b679c 100644 --- a/XMonad/Layout/PerWorkspace.hs +++ b/XMonad/Layout/PerWorkspace.hs @@ -52,7 +52,7 @@ onWorkspace :: (LayoutClass l1 a, LayoutClass l2 a) -> (l1 a) -- ^ layout to use on the matched workspace -> (l2 a) -- ^ layout to use everywhere else -> PerWorkspace l1 l2 a -onWorkspace wsId l1 l2 = PerWorkspace [wsId] True l1 l2 +onWorkspace wsId l1 l2 = PerWorkspace [wsId] False l1 l2 -- | Specify one layout to use on a particular set of workspaces, and -- another to use on all other workspaces. @@ -61,7 +61,7 @@ onWorkspaces :: (LayoutClass l1 a, LayoutClass l2 a) -> (l1 a) -- ^ layout to use on matched workspaces -> (l2 a) -- ^ layout to use everywhere else -> PerWorkspace l1 l2 a -onWorkspaces wsIds l1 l2 = PerWorkspace wsIds True l1 l2 +onWorkspaces wsIds l1 l2 = PerWorkspace wsIds False l1 l2 -- | Structure for representing a workspace-specific layout along with -- a layout for all other workspaces. We store the tags of workspaces |