mirror of
https://github.com/xmonad/xmonad.git
synced 2025-08-01 12:41:53 -07:00
Merge pull request #259 from vmchale/master
Accord with new pattern-match
This commit is contained in:
@@ -13,6 +13,8 @@
|
|||||||
* Export constructor for `Choose` and `CLR` from `Module.Layout` to allow
|
* Export constructor for `Choose` and `CLR` from `Module.Layout` to allow
|
||||||
pattern-matching on the left and right sub-layouts of `Choose l r a`.
|
pattern-matching on the left and right sub-layouts of `Choose l r a`.
|
||||||
|
|
||||||
|
* Compatibility with GHC 9.0
|
||||||
|
|
||||||
## 0.15 (September 30, 2018)
|
## 0.15 (September 30, 2018)
|
||||||
|
|
||||||
* Reimplement `sendMessage` to deal properly with windowset changes made
|
* Reimplement `sendMessage` to deal properly with windowset changes made
|
||||||
|
@@ -61,7 +61,7 @@ xmonad conf = do
|
|||||||
|
|
||||||
let launch' args = do
|
let launch' args = do
|
||||||
catchIO buildLaunch
|
catchIO buildLaunch
|
||||||
conf' @ XConfig { layoutHook = Layout l }
|
conf'@XConfig { layoutHook = Layout l }
|
||||||
<- handleExtraArgs conf args conf{ layoutHook = Layout (layoutHook conf) }
|
<- handleExtraArgs conf args conf{ layoutHook = Layout (layoutHook conf) }
|
||||||
withArgs [] $ launch (conf' { layoutHook = l })
|
withArgs [] $ launch (conf' { layoutHook = l })
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user