mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 03:20:21 -07:00
Fix updatePointer equivalence table.
In order to get the behavior I had with `updatePointer (Relative 0.5 0.5)`, I have to use `updatePointer (0.5,0.5) (0,0)`.
This commit is contained in:
parent
c08d48f6aa
commit
e0211ad7d6
@ -31,7 +31,7 @@
|
||||
| < 0.12 | >= 0.12 |
|
||||
|-------------------------------------|----------------------------------|
|
||||
| `updatePointer Nearest` | `updatePointer (0.5, 0.5) (1,1)` |
|
||||
| `updatePointer (Relative x y)` | `updatePointer (x,y) (1,1)` |
|
||||
| `updatePointer (Relative x y)` | `updatePointer (x,y) (0,0)` |
|
||||
| `updatePointer (TowardsCentre x y)` | `updatePointer (0.5,0.5) (x,y)` |
|
||||
|
||||
### New Modules
|
||||
|
Loading…
x
Reference in New Issue
Block a user