mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2025-02-16 18:12:09 +01:00
Accomodate for hotspot in cursor position
This commit is contained in:
parent
afd058b754
commit
9383aaf89e
1 changed files with 10 additions and 2 deletions
|
@ -48,9 +48,13 @@ static void handle_pointer_motion(struct pointer_state *pstate,
|
||||||
state->cur_x += d_x;
|
state->cur_x += d_x;
|
||||||
state->cur_y += d_y;
|
state->cur_y += d_y;
|
||||||
|
|
||||||
|
struct wlr_cursor_image *image = state->cursor->images[0];
|
||||||
|
|
||||||
struct output_state *output;
|
struct output_state *output;
|
||||||
wl_list_for_each(output, &pstate->compositor->outputs, link) {
|
wl_list_for_each(output, &pstate->compositor->outputs, link) {
|
||||||
wlr_output_move_cursor(output->output, state->cur_x, state->cur_y);
|
wlr_output_move_cursor(output->output,
|
||||||
|
state->cur_x - image->hotspot_x,
|
||||||
|
state->cur_y - image->hotspot_y);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -60,9 +64,13 @@ static void handle_pointer_motion_absolute(struct pointer_state *pstate,
|
||||||
state->cur_x = x;
|
state->cur_x = x;
|
||||||
state->cur_y = y;
|
state->cur_y = y;
|
||||||
|
|
||||||
|
struct wlr_cursor_image *image = state->cursor->images[0];
|
||||||
|
|
||||||
struct output_state *output;
|
struct output_state *output;
|
||||||
wl_list_for_each(output, &pstate->compositor->outputs, link) {
|
wl_list_for_each(output, &pstate->compositor->outputs, link) {
|
||||||
wlr_output_move_cursor(output->output, state->cur_x, state->cur_y);
|
wlr_output_move_cursor(output->output,
|
||||||
|
state->cur_x - image->hotspot_x,
|
||||||
|
state->cur_y - image->hotspot_y);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue