mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 04:26:00 +01:00
pointer: expand sw cursor damage box
fixes #8031 just a bit, rounding errors I guess
This commit is contained in:
parent
1bf63dfdcd
commit
57b632ead8
1 changed files with 1 additions and 1 deletions
|
@ -657,7 +657,7 @@ Vector2D CPointerManager::closestValid(const Vector2D& pos) {
|
|||
}
|
||||
|
||||
void CPointerManager::damageIfSoftware() {
|
||||
auto b = getCursorBoxGlobal();
|
||||
auto b = getCursorBoxGlobal().expand(4);
|
||||
|
||||
static auto PNOHW = CConfigValue<Hyprlang::INT>("cursor:no_hardware_cursors");
|
||||
|
||||
|
|
Loading…
Reference in a new issue