mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Merge pull request #463 from emersion/fix-hw-cursor-move-segfault
Fix segfault when moving hardware cursor
This commit is contained in:
commit
dad19394cf
1 changed files with 4 additions and 2 deletions
|
@ -634,8 +634,10 @@ static bool wlr_drm_connector_move_cursor(struct wlr_output *output,
|
||||||
struct wlr_box transformed_box;
|
struct wlr_box transformed_box;
|
||||||
wlr_output_transform_apply_to_box(transform, &box, &transformed_box);
|
wlr_output_transform_apply_to_box(transform, &box, &transformed_box);
|
||||||
|
|
||||||
transformed_box.x -= plane->cursor_hotspot_x;
|
if (plane != NULL) {
|
||||||
transformed_box.y -= plane->cursor_hotspot_y;
|
transformed_box.x -= plane->cursor_hotspot_x;
|
||||||
|
transformed_box.y -= plane->cursor_hotspot_y;
|
||||||
|
}
|
||||||
|
|
||||||
return drm->iface->crtc_move_cursor(drm, conn->crtc, transformed_box.x,
|
return drm->iface->crtc_move_cursor(drm, conn->crtc, transformed_box.x,
|
||||||
transformed_box.y);
|
transformed_box.y);
|
||||||
|
|
Loading…
Reference in a new issue