mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-08-08 16:01:53 -07:00
Tabbed: removed two little bugs due to the mess during the transition (my fault, sorry ;)
This commit is contained in:
@@ -92,7 +92,7 @@ data TabState =
|
|||||||
TabState { tabsWindows :: [(Window,Window)]
|
TabState { tabsWindows :: [(Window,Window)]
|
||||||
, scr :: Rectangle
|
, scr :: Rectangle
|
||||||
, fontS :: FontStruct -- FontSet
|
, fontS :: FontStruct -- FontSet
|
||||||
} deriving ( Show , Read )
|
}
|
||||||
|
|
||||||
data Tabbed a =
|
data Tabbed a =
|
||||||
Tabbed (InvisibleMaybe TabState) TConf
|
Tabbed (InvisibleMaybe TabState) TConf
|
||||||
@@ -139,7 +139,7 @@ handleMess (Tabbed (IJus st@(TabState {tabsWindows = tws})) conf) m
|
|||||||
| Just ReleaseResources == fromMessage m = do d <- asks display
|
| Just ReleaseResources == fromMessage m = do d <- asks display
|
||||||
destroyTabs $ map fst tws
|
destroyTabs $ map fst tws
|
||||||
io $ freeFont d (fontS st)
|
io $ freeFont d (fontS st)
|
||||||
return Nothing
|
return $ Just $ Tabbed INothin conf
|
||||||
handleMess _ _ = return Nothing
|
handleMess _ _ = return Nothing
|
||||||
|
|
||||||
handleEvent :: TConf -> TabState -> Event -> X ()
|
handleEvent :: TConf -> TabState -> Event -> X ()
|
||||||
|
Reference in New Issue
Block a user