aboutsummaryrefslogtreecommitdiffstats
path: root/RotView.hs
diff options
context:
space:
mode:
Diffstat (limited to 'RotView.hs')
-rw-r--r--RotView.hs9
1 files changed, 2 insertions, 7 deletions
diff --git a/RotView.hs b/RotView.hs
index 1fc421e..6a8fc7f 100644
--- a/RotView.hs
+++ b/RotView.hs
@@ -10,7 +10,7 @@ module XMonadContrib.RotView ( rotView ) where
import Control.Monad.State ( gets )
import Data.List ( sortBy )
-import Data.Maybe ( listToMaybe )
+import Data.Maybe ( listToMaybe, isJust )
import XMonad
import StackSet hiding (filter)
@@ -22,10 +22,5 @@ rotView b = do
let m = tag . workspace . current $ ws
sortWs = sortBy (\x y -> compare (tag x) (tag y))
pivoted = uncurry (flip (++)) . span ((< m) . tag) . sortWs . hidden $ ws
- nextws = listToMaybe . filter (not.isEmpty) . (if b then id else reverse) $ pivoted
+ nextws = listToMaybe . filter (isJust . stack) . (if b then id else reverse) $ pivoted
whenJust nextws (O.view . tag)
-
-isEmpty :: Workspace i a -> Bool
-isEmpty ws = case stack ws of
- Empty -> True
- _ -> False