mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 11:30:22 -07:00
Merge pull request #652 from Rogach/pr/fix-window-navigation
X.A.WindowNavigation: Fix navigation being "stuck" in certain situations
This commit is contained in:
commit
2a02fb3753
@ -32,6 +32,11 @@
|
||||
- Flipped how `(^?)`, `(~?)`, and `($?)` work to more accurately
|
||||
reflect how one uses these operators.
|
||||
|
||||
* `XMonad.Actions.WindowNavigation`
|
||||
|
||||
- Fixed navigation getting "stuck" in certain situations for
|
||||
widescreen resolutions.
|
||||
|
||||
## 0.17.0 (October 27, 2021)
|
||||
|
||||
### Breaking Changes
|
||||
|
@ -209,9 +209,9 @@ inr D (Point px py) (Rectangle rx ry w h) = px >= rx && px < rx + fromIntegral w
|
||||
py < ry + fromIntegral h
|
||||
inr U (Point px py) (Rectangle rx ry w _) = px >= rx && px < rx + fromIntegral w &&
|
||||
py > ry
|
||||
inr R (Point px py) (Rectangle rx ry _ h) = px < rx &&
|
||||
inr R (Point px py) (Rectangle rx ry w h) = px < rx + fromIntegral w &&
|
||||
py >= ry && py < ry + fromIntegral h
|
||||
inr L (Point px py) (Rectangle rx ry w h) = px > rx + fromIntegral w &&
|
||||
inr L (Point px py) (Rectangle rx ry _ h) = px > rx &&
|
||||
py >= ry && py < ry + fromIntegral h
|
||||
|
||||
sortby :: Direction2D -> [(a,Rectangle)] -> [(a,Rectangle)]
|
||||
|
Loading…
x
Reference in New Issue
Block a user