aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 43b20779..c263eb82 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -382,8 +382,8 @@ void drag_icon_update_position(struct sway_drag_icon *icon) {
382 case WLR_DRAG_GRAB_KEYBOARD: 382 case WLR_DRAG_GRAB_KEYBOARD:
383 return; 383 return;
384 case WLR_DRAG_GRAB_KEYBOARD_POINTER: 384 case WLR_DRAG_GRAB_KEYBOARD_POINTER:
385 icon->x = cursor->x + wlr_icon->surface->sx; 385 icon->x = cursor->x + icon->dx;
386 icon->y = cursor->y + wlr_icon->surface->sy; 386 icon->y = cursor->y + icon->dy;
387 break; 387 break;
388 case WLR_DRAG_GRAB_KEYBOARD_TOUCH:; 388 case WLR_DRAG_GRAB_KEYBOARD_TOUCH:;
389 struct wlr_touch_point *point = 389 struct wlr_touch_point *point =
@@ -391,8 +391,8 @@ void drag_icon_update_position(struct sway_drag_icon *icon) {
391 if (point == NULL) { 391 if (point == NULL) {
392 return; 392 return;
393 } 393 }
394 icon->x = seat->touch_x + wlr_icon->surface->sx; 394 icon->x = seat->touch_x + icon->dx;
395 icon->y = seat->touch_y + wlr_icon->surface->sy; 395 icon->y = seat->touch_y + icon->dy;
396 } 396 }
397 397
398 drag_icon_damage_whole(icon); 398 drag_icon_damage_whole(icon);
@@ -402,6 +402,9 @@ static void drag_icon_handle_surface_commit(struct wl_listener *listener,
402 void *data) { 402 void *data) {
403 struct sway_drag_icon *icon = 403 struct sway_drag_icon *icon =
404 wl_container_of(listener, icon, surface_commit); 404 wl_container_of(listener, icon, surface_commit);
405 struct wlr_drag_icon *wlr_icon = icon->wlr_drag_icon;
406 icon->dx += wlr_icon->surface->current.dx;
407 icon->dy += wlr_icon->surface->current.dy;
405 drag_icon_update_position(icon); 408 drag_icon_update_position(icon);
406} 409}
407 410