mirror of
https://github.com/hyprwm/Hyprland
synced 2025-02-18 12:03:00 +01:00
fix: bug where bottom-left corner cursor icon does not show
This commit is contained in:
parent
a8ef13277c
commit
297e27c8c4
1 changed files with 1 additions and 1 deletions
|
@ -1353,7 +1353,7 @@ void CInputManager::setCursorIconOnBorder(CWindow* w) {
|
|||
else
|
||||
setCursorImageUntilUnset("top_side");
|
||||
} else if (mouseCoords.y > box.y + box.height - CORNER) {
|
||||
if (mouseCoords.x < box.x)
|
||||
if (mouseCoords.x < box.x + CORNER)
|
||||
setCursorImageUntilUnset("bottom_left_corner");
|
||||
else if (mouseCoords.x > box.x + box.width - CORNER)
|
||||
setCursorImageUntilUnset("bottom_right_corner");
|
||||
|
|
Loading…
Add table
Reference in a new issue