mirror of
https://github.com/xmonad/xmonad.git
synced 2025-09-02 19:53:48 -07:00
Fix new bug in screen switching
This commit is contained in:
@@ -22,6 +22,7 @@ module Config where
|
||||
--
|
||||
import XMonad
|
||||
import Operations
|
||||
import qualified StackSet as W
|
||||
import Data.Ratio
|
||||
import Data.Bits ((.|.))
|
||||
import qualified Data.Map as M
|
||||
@@ -165,7 +166,7 @@ keys = M.fromList $
|
||||
++
|
||||
[((m .|. modMask, key), screenWorkspace sc >>= flip whenJust f)
|
||||
| (key, sc) <- zip [xK_w, xK_e, xK_r] [0..]
|
||||
, (f, m) <- [(view, 0), (shift, shiftMask)]]
|
||||
, (f, m) <- [(windows . W.view, 0), (shift, shiftMask)]]
|
||||
|
||||
-- |
|
||||
-- default actions bound to mouse events
|
||||
|
Reference in New Issue
Block a user