mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Merge pull request #1234 from mntmn/master
fix cursor loss w/ legacy drm and software cursor (tested on etnaviv)
This commit is contained in:
commit
d8ca467211
1 changed files with 4 additions and 1 deletions
|
@ -39,7 +39,10 @@ bool legacy_crtc_set_cursor(struct wlr_drm_backend *drm,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!bo) {
|
if (!bo) {
|
||||||
drmModeSetCursor(drm->fd, crtc->id, 0, 0, 0);
|
if (drmModeSetCursor(drm->fd, crtc->id, 0, 0, 0)) {
|
||||||
|
wlr_log_errno(WLR_DEBUG, "Failed to clear hardware cursor");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue