summaryrefslogtreecommitdiffstats
path: root/sway/tree/view.c
diff options
context:
space:
mode:
authorLibravatar William Wold <wm@wmww.sh>2018-09-10 10:03:53 -0700
committerLibravatar William Wold <wm@wmww.sh>2018-09-10 10:18:12 -0700
commit22c5dd8a028252039a4fc9243b1f747ab8541cf8 (patch)
tree8b0b06993da400c8bf4c4133a384ddb203dbf60a /sway/tree/view.c
parentPrevent stacked layout from crashing (diff)
downloadsway-22c5dd8a028252039a4fc9243b1f747ab8541cf8.tar.gz
sway-22c5dd8a028252039a4fc9243b1f747ab8541cf8.tar.zst
sway-22c5dd8a028252039a4fc9243b1f747ab8541cf8.zip
Minor fix
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r--sway/tree/view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 10c48e2e..981d82c9 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -584,8 +584,8 @@ void view_unmap(struct sway_view *view) {
584 } 584 }
585 585
586 transaction_commit_dirty(); 586 transaction_commit_dirty();
587 cursor_send_pointer_motion(config->handler_context.seat->cursor, 0, true);
588 view->surface = NULL; 587 view->surface = NULL;
588 cursor_send_pointer_motion(config->handler_context.seat->cursor, 0, true);
589} 589}
590 590
591void view_update_size(struct sway_view *view, int width, int height) { 591void view_update_size(struct sway_view *view, int width, int height) {