view_update_size: fix surface_width/height mismatch

This commit is contained in:
Antonin Décimo 2019-08-10 16:47:19 +02:00 committed by Drew DeVault
parent ee40501570
commit 9e5664e997
1 changed files with 1 additions and 1 deletions

View File

@ -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;