mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-07-31 20:21:51 -07:00
Replace liftM with fmap
This commit is contained in:
@@ -90,7 +90,7 @@ data FixMaster a = FixMaster (AddMaster a) deriving (Show, Read)
|
||||
instance LayoutModifier FixMaster Window where
|
||||
modifyLayout (FixMaster (AddMaster k d f)) = applyMaster True k d f
|
||||
modifierDescription (FixMaster a) = "Fix" ++ modifierDescription a
|
||||
pureMess (FixMaster a) m = liftM FixMaster (pureMess a m)
|
||||
pureMess (FixMaster a) m = fmap FixMaster (pureMess a m)
|
||||
|
||||
fixMastered :: (LayoutClass l a) =>
|
||||
Rational -- ^ @delta@, the ratio of the screen to resize by
|
||||
|
Reference in New Issue
Block a user