mirror of
https://github.com/xmonad/xmonad.git
synced 2025-05-19 08:30:21 -07:00
Less refreshing in mouse-2 binding (thanks aavogt)
This commit is contained in:
parent
17799f131a
commit
c7bdac1a7e
@ -225,7 +225,7 @@ mouseBindings (XConfig {XMonad.modMask = modMask}) = M.fromList
|
|||||||
[ ((modMask, button1), \w -> focus w >> mouseMoveWindow w
|
[ ((modMask, button1), \w -> focus w >> mouseMoveWindow w
|
||||||
>> windows W.shiftMaster)
|
>> windows W.shiftMaster)
|
||||||
-- mod-button2 %! Raise the window to the top of the stack
|
-- mod-button2 %! Raise the window to the top of the stack
|
||||||
, ((modMask, button2), \w -> focus w >> windows W.shiftMaster)
|
, ((modMask, button2), windows . (W.shiftMaster .) . W.focusWindow)
|
||||||
-- mod-button3 %! Set the window to floating mode and resize by dragging
|
-- mod-button3 %! Set the window to floating mode and resize by dragging
|
||||||
, ((modMask, button3), \w -> focus w >> mouseResizeWindow w
|
, ((modMask, button3), \w -> focus w >> mouseResizeWindow w
|
||||||
>> windows W.shiftMaster)
|
>> windows W.shiftMaster)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user