From 39328ca4e4b97bd76153869f6a0a20fef3c17112 Mon Sep 17 00:00:00 2001 From: Dimitris Triantafyllidis Date: Tue, 27 Oct 2020 21:24:30 +0200 Subject: In container_split, set a floating container's view to tiled Currently, when a floating container with a view is split and children are added to it, the new views are rendered as tiled, while the first view stays in floating style. Here this is addressed by setting the view to tiled as soon as the container is split, by duplicating the "view part" of the logic in container_set_floating(..., false). Since the new container of the view is no longer considered floating, it makes sense to set the view to tiling at this point. The view would have to be set back to floating if it was possible to "unsplit" the container. --- sway/tree/container.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sway/tree/container.c') diff --git a/sway/tree/container.c b/sway/tree/container.c index 3e234186..8557210f 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -1413,6 +1413,13 @@ struct sway_container *container_split(struct sway_container *child, struct sway_seat *seat = input_manager_get_default_seat(); bool set_focus = (seat_get_focus(seat) == &child->node); + if (container_is_floating(child) && child->view) { + view_set_tiled(child->view, true); + if (child->view->using_csd) { + child->border = child->saved_border; + } + } + struct sway_container *cont = container_create(NULL); cont->width = child->width; cont->height = child->height; -- cgit v1.2.3