diff options
-rw-r--r-- | Tabbed.hs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -25,6 +25,7 @@ tabbed :: Layout tabbed = Layout { doLayout = dolay, modifyLayout = const (return Nothing) } dolay :: Rectangle -> W.Stack Window -> X [(Window, Rectangle)] +dolay _ W.Empty = return [] dolay sc (W.Node w [] []) = return [(w,sc)] dolay sc@(Rectangle x y wid _) s@(W.Node w _ _) = do let ws = W.integrate s |