sway

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

commit c0da364865bb08bfb464c22eefd87a260a07cc97
parent 7263e39f6423d928b71916b43972c51fb11a00c9
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Tue,  4 Sep 2018 08:34:07 +1000

Fix floating view moving to 0,0 when splitting

Diffstat:
Msway/tree/container.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/sway/tree/container.c b/sway/tree/container.c @@ -1148,6 +1148,8 @@ struct sway_container *container_split(struct sway_container *child, struct sway_container *cont = container_create(NULL); cont->width = child->width; cont->height = child->height; + cont->x = child->x; + cont->y = child->y; cont->current_gaps = child->current_gaps; cont->layout = layout;