commit 5f3fce75198791ea5fd63178e5b42cfe83bccc58
parent 212b5039927842f22295c95f4e0a4f914b243194
Author: emersion <contact@emersion.fr>
Date: Fri, 30 Mar 2018 23:58:40 -0400
Maximize xwayland views by default
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
@@ -143,8 +143,11 @@ static void handle_map(struct wl_listener *listener, void *data) {
struct sway_view *view = sway_surface->view;
container_view_destroy(view->swayc);
+ wlr_xwayland_surface_set_maximized(xsurface, true);
+
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 *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);