aboutsummaryrefslogtreecommitdiff
path: root/sway/tree/view.c
diff options
context:
space:
mode:
authorAntonin Décimo <antonin.decimo@gmail.com>2019-08-10 16:47:19 +0200
committerDrew DeVault <sir@cmpwn.com>2019-08-12 09:42:11 +0900
commit0570eb19e5cd3d6f4839f3b4fc921e9fbd1f0aa0 (patch)
tree660a6d87dba7ed52f6364df53a4818fdf41dae1b /sway/tree/view.c
parent9be76e6b1272120dd5f9ae7aab400bf0479328ca (diff)
view_update_size: fix surface_width/height mismatch
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 bb3ae707..0f35d970 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -709,7 +709,7 @@ void view_update_size(struct sway_view *view, int width, int height) {
con->surface_y = fmax(con->surface_y, con->content_y);
}
con->surface_width = width;
- con->surface_width = height;
+ con->surface_height = height;
}
static const struct sway_view_child_impl subsurface_impl;