diff options
author | emersion <contact@emersion.fr> | 2018-05-08 23:05:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-08 23:05:08 +0100 |
commit | 22b873332fa9ca8feaeaf5c36487c36bd9e631c5 (patch) | |
tree | dba461ac5c20a75dc1771c876f8d886f4f6ca74a | |
parent | 8fa53df670e72f36bb80ef03a62acb10dbf97397 (diff) | |
parent | 95dac2a069388663ed5d94868f7f77679840c0b6 (diff) |
Merge pull request #1942 from VincentVanlaer/xwayland-lazy
Update xwayland start for new API
-rw-r--r-- | sway/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/server.c b/sway/server.c index f67f44d8..2793ca70 100644 --- a/sway/server.c +++ b/sway/server.c @@ -84,7 +84,7 @@ bool server_init(struct sway_server *server) { // TODO make xwayland optional server->xwayland = - wlr_xwayland_create(server->wl_display, server->compositor); + wlr_xwayland_create(server->wl_display, server->compositor, false); wl_signal_add(&server->xwayland->events.new_surface, &server->xwayland_surface); server->xwayland_surface.notify = handle_xwayland_surface; |