aboutsummaryrefslogtreecommitdiff
path: root/rootston
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2018-06-05 23:45:03 -0400
committerTony Crisci <tony@dubstepdish.com>2018-06-05 23:45:03 -0400
commit7c888a39c6d08e9301032625987a6015fac17c6f (patch)
treedfc7ca93bc4b37cb050fc876d44ecfb010876c40 /rootston
parent9333acd68e468d409cbcc30fb742fdf57c631cb9 (diff)
update drag position at the right times
Diffstat (limited to 'rootston')
-rw-r--r--rootston/seat.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/rootston/seat.c b/rootston/seat.c
index 132b0f35..33dff741 100644
--- a/rootston/seat.c
+++ b/rootston/seat.c
@@ -260,6 +260,7 @@ static void roots_drag_icon_handle_surface_commit(struct wl_listener *listener,
void *data) {
struct roots_drag_icon *icon =
wl_container_of(listener, icon, surface_commit);
+ roots_drag_icon_update_position(icon);
roots_drag_icon_damage_whole(icon);
}
@@ -312,6 +313,8 @@ static void roots_seat_handle_new_drag_icon(struct wl_listener *listener,
wl_signal_add(&wlr_drag_icon->events.destroy, &icon->destroy);
wl_list_insert(&seat->drag_icons, &icon->link);
+
+ roots_drag_icon_update_position(icon);
}
void roots_drag_icon_update_position(struct roots_drag_icon *icon) {