commit 404d006a1c1ca22b5da7073f538401c041bd75cd
parent b2dec1236837f0c441a9fd6162b6294c52fac5e0
Author: Drew DeVault <sir@cmpwn.com>
Date: Sun, 13 May 2018 14:18:07 -0400
Enable lazy xwayland
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/server.c b/sway/server.c
@@ -95,7 +95,7 @@ bool server_init(struct sway_server *server) {
// TODO make xwayland optional
server->xwayland =
- wlr_xwayland_create(server->wl_display, server->compositor, false);
+ wlr_xwayland_create(server->wl_display, server->compositor, true);
wl_signal_add(&server->xwayland->events.new_surface,
&server->xwayland_surface);
server->xwayland_surface.notify = handle_xwayland_surface;