sway

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

commit dd869c158e083b20190b680b11a0b6356ba8a5e5
parent eed0b5614f277240be9adf4524aea39be07856c2
Author: emersion <contact@emersion.fr>
Date:   Thu,  5 Jul 2018 00:12:09 +0100

Merge pull request #2211 from RyanDwyer/fix-xdgtoplevel-tiled

Call view_set_tiled for mapping non-floating views
Diffstat:
Msway/tree/view.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/sway/tree/view.c b/sway/tree/view.c @@ -532,6 +532,8 @@ void view_map(struct sway_view *view, struct wlr_surface *wlr_surface) { if (view->impl->wants_floating && view->impl->wants_floating(view)) { container_set_floating(view->swayc, true); + } else { + view_set_tiled(view, true); } input_manager_set_focus(input_manager, cont);