diff options
author | emersion <[email protected]> | 2018-09-07 15:43:15 +0200 |
---|---|---|
committer | emersion <[email protected]> | 2018-09-07 15:43:15 +0200 |
commit | 251a7ebc4ba1dd24e9bc6b3cfd6883c80f429a2f (patch) | |
tree | 0c719df34d250397e9b2731c50f3ee6bb3acf38a /sway/input/seat.c | |
parent | 309fcf23007a7c1b5c1c6da6b5ff7101312488cc (diff) |
Fix drag-and-drop
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r-- | sway/input/seat.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c index 4b7c7893..3dbb6ce4 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -240,16 +240,16 @@ void drag_icon_update_position(struct sway_drag_icon *icon) { struct sway_seat *seat = icon->seat; struct wlr_cursor *cursor = seat->cursor->cursor; if (wlr_icon->is_pointer) { - icon->x = cursor->x + wlr_icon->sx; - icon->y = cursor->y + wlr_icon->sy; + icon->x = cursor->x; + icon->y = cursor->y; } else { struct wlr_touch_point *point = wlr_seat_touch_get_point(seat->wlr_seat, wlr_icon->touch_id); if (point == NULL) { return; } - icon->x = seat->touch_x + wlr_icon->sx; - icon->y = seat->touch_y + wlr_icon->sy; + icon->x = seat->touch_x; + icon->y = seat->touch_y; } drag_icon_damage_whole(icon); @@ -308,6 +308,7 @@ static void handle_new_drag_icon(struct wl_listener *listener, void *data) { wl_list_insert(&root_container.sway_root->drag_icons, &icon->link); drag_icon_update_position(icon); + seat_end_mouse_operation(seat); } static void collect_focus_iter(struct sway_container *con, void *data) { |