sway

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

commit 1c50d79e1940d9dce6217d0ca19611a19709120a
parent 1592543fd67c23467c81dfa51900bd798b9d8dfc
Author: Drew DeVault <sir@cmpwn.com>
Date:   Fri, 30 Mar 2018 13:31:52 -0400

Merge pull request #1664 from swaywm/xwayland-add-to-focused

Add xwayland views to focused container
Diffstat:
Msway/desktop/xwayland.c | 8+++-----
1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c @@ -154,12 +154,10 @@ static void handle_map_notify(struct wl_listener *listener, void *data) { struct sway_view *view = sway_surface->view; container_view_destroy(view->swayc); - struct sway_container *parent = root_container.children->items[0]; - parent = parent->children->items[0]; // workspace - - struct sway_container *cont = container_view_create(parent, view); + struct sway_seat *seat = input_manager_current_seat(input_manager); + struct sway_container *focus = sway_seat_get_focus_inactive(seat, &root_container); + struct sway_container *cont = container_view_create(focus, view); view->swayc = cont; - arrange_windows(cont->parent, -1, -1); sway_input_manager_set_focus(input_manager, cont); }