aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/cursor.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/cursor.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/cursor.c')
-rw-r--r--sway/input/cursor.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 27597640..c873a20e 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -54,6 +54,7 @@ static struct sway_container *container_at_coords(
54 struct sway_seat *seat, double lx, double ly, 54 struct sway_seat *seat, double lx, double ly,
55 struct wlr_surface **surface, double *sx, double *sy) { 55 struct wlr_surface **surface, double *sx, double *sy) {
56 // check for unmanaged views first 56 // check for unmanaged views first
57 #ifdef HAVE_XWAYLAND
57 struct wl_list *unmanaged = &root_container.sway_root->xwayland_unmanaged; 58 struct wl_list *unmanaged = &root_container.sway_root->xwayland_unmanaged;
58 struct sway_xwayland_unmanaged *unmanaged_surface; 59 struct sway_xwayland_unmanaged *unmanaged_surface;
59 wl_list_for_each_reverse(unmanaged_surface, unmanaged, link) { 60 wl_list_for_each_reverse(unmanaged_surface, unmanaged, link) {
@@ -69,7 +70,7 @@ static struct sway_container *container_at_coords(
69 return NULL; 70 return NULL;
70 } 71 }
71 } 72 }
72 73 #endif
73 // find the output the cursor is on 74 // find the output the cursor is on
74 struct wlr_output_layout *output_layout = 75 struct wlr_output_layout *output_layout =
75 root_container.sway_root->output_layout; 76 root_container.sway_root->output_layout;