aboutsummaryrefslogtreecommitdiff
path: root/rootston/desktop.c
diff options
context:
space:
mode:
Diffstat (limited to 'rootston/desktop.c')
-rw-r--r--rootston/desktop.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/rootston/desktop.c b/rootston/desktop.c
index 7a780cb9..0eb63dc4 100644
--- a/rootston/desktop.c
+++ b/rootston/desktop.c
@@ -53,6 +53,10 @@ static void view_update_output(const struct roots_view *view,
}
void view_move(struct roots_view *view, double x, double y) {
+ if (view->x == x && view->y == y) {
+ return;
+ }
+
struct wlr_box before;
view_get_box(view, &before);
if (view->move) {
@@ -61,6 +65,7 @@ void view_move(struct roots_view *view, double x, double y) {
view->x = x;
view->y = y;
}
+ view_update_output(view, &before);
}
void view_activate(struct roots_view *view, bool activate) {