sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 0570eb19e5cd3d6f4839f3b4fc921e9fbd1f0aa0
parent 9be76e6b1272120dd5f9ae7aab400bf0479328ca
Author: Antonin Décimo <antonin.decimo@gmail.com>
Date:   Sat, 10 Aug 2019 16:47:19 +0200

view_update_size: fix surface_width/height mismatch

Diffstat:
Msway/tree/view.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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;