mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 03:20:21 -07:00
Compose startupHook/logHook in the same order as other modules
I believe this was causing issues where a dynamically created workspace would not properly trigger manageDocks logic.
This commit is contained in:
parent
5790913eae
commit
217abc39a2
@ -146,8 +146,8 @@ instance ExtensionClass ProjectState where
|
||||
-- | Add dynamic projects support to the given config.
|
||||
dynamicProjects :: [Project] -> XConfig a -> XConfig a
|
||||
dynamicProjects ps c =
|
||||
c { startupHook = startupHook c <> dynamicProjectsStartupHook ps
|
||||
, logHook = logHook c <> dynamicProjectsLogHook
|
||||
c { startupHook = dynamicProjectsStartupHook ps <> startupHook c
|
||||
, logHook = dynamicProjectsLogHook <> logHook c
|
||||
}
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
Loading…
x
Reference in New Issue
Block a user