aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorLibravatar Pascal Pascher <aur@clouddrop.de>2018-07-24 22:16:06 +0200
committerLibravatar Pascal Pascher <aur@clouddrop.de>2018-07-24 22:16:06 +0200
commit24ad1c3983192b47345566fd876e26b45160d68e (patch)
treeb617f8d15cb20897b1c016fb67fab80d7245c66a /sway/input/seat.c
parentMerge pull request #2165 from swaywm/pid-workspaces (diff)
downloadsway-24ad1c3983192b47345566fd876e26b45160d68e.tar.gz
sway-24ad1c3983192b47345566fd876e26b45160d68e.tar.zst
sway-24ad1c3983192b47345566fd876e26b45160d68e.zip
Added meson option "enable_xwayland" (default: true) to enable/disable xwayland support
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index fc9e54b6..66d11eea 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -103,11 +103,13 @@ static void seat_send_focus(struct sway_container *con,
103 103
104 if (con->type == C_VIEW 104 if (con->type == C_VIEW
105 && seat_is_input_allowed(seat, con->sway_view->surface)) { 105 && seat_is_input_allowed(seat, con->sway_view->surface)) {
106 #ifdef HAVE_XWAYLAND
106 if (con->sway_view->type == SWAY_VIEW_XWAYLAND) { 107 if (con->sway_view->type == SWAY_VIEW_XWAYLAND) {
107 struct wlr_xwayland *xwayland = 108 struct wlr_xwayland *xwayland =
108 seat->input->server->xwayland.wlr_xwayland; 109 seat->input->server->xwayland.wlr_xwayland;
109 wlr_xwayland_set_seat(xwayland, seat->wlr_seat); 110 wlr_xwayland_set_seat(xwayland, seat->wlr_seat);
110 } 111 }
112 #endif
111 struct wlr_keyboard *keyboard = wlr_seat_get_keyboard(seat->wlr_seat); 113 struct wlr_keyboard *keyboard = wlr_seat_get_keyboard(seat->wlr_seat);
112 if (keyboard) { 114 if (keyboard) {
113 wlr_seat_keyboard_notify_enter(seat->wlr_seat, 115 wlr_seat_keyboard_notify_enter(seat->wlr_seat,