mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
Fix unscaled cursor sx, sy
This commit is contained in:
parent
5dc303fc26
commit
15bb9a53b4
1 changed files with 5 additions and 2 deletions
|
@ -310,6 +310,9 @@ static void output_fullscreen_surface_render(struct wlr_output *output,
|
||||||
wlr_surface_send_frame_done(surface, when);
|
wlr_surface_send_frame_done(surface, when);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the cursor box, scaled for its output.
|
||||||
|
*/
|
||||||
static void output_cursor_get_box(struct wlr_output_cursor *cursor,
|
static void output_cursor_get_box(struct wlr_output_cursor *cursor,
|
||||||
struct wlr_box *box) {
|
struct wlr_box *box) {
|
||||||
box->x = cursor->x - cursor->hotspot_x;
|
box->x = cursor->x - cursor->hotspot_x;
|
||||||
|
@ -318,8 +321,8 @@ static void output_cursor_get_box(struct wlr_output_cursor *cursor,
|
||||||
box->height = cursor->height;
|
box->height = cursor->height;
|
||||||
|
|
||||||
if (cursor->surface != NULL) {
|
if (cursor->surface != NULL) {
|
||||||
box->x += cursor->surface->current->sx;
|
box->x += cursor->surface->current->sx * cursor->output->scale;
|
||||||
box->y += cursor->surface->current->sy;
|
box->y += cursor->surface->current->sy * cursor->output->scale;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue