diff options
author | Bruno <brunoferreirapinto@gmail.com> | 2018-04-07 23:24:54 +0100 |
---|---|---|
committer | Bruno Pinto <brunoferreirapinto@gmail.com> | 2018-04-07 23:29:04 +0100 |
commit | ba5c0903f9c288e7b617e537ef80eed2a42e08ed (patch) | |
tree | 43fc157deb8ce85368a1846e4a943bca9a753bc1 | |
parent | bf68854a38f867c3553d51394e78a6e17de1798c (diff) |
rootston: fix compilation without XWayland support
-rw-r--r-- | rootston/desktop.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rootston/desktop.c b/rootston/desktop.c index f1afe2c9..4f5d3394 100644 --- a/rootston/desktop.c +++ b/rootston/desktop.c @@ -593,10 +593,12 @@ static bool view_at(struct roots_view *view, double lx, double ly, _surface = wlr_wl_shell_surface_surface_at(view->wl_shell_surface, view_sx, view_sy, &_sx, &_sy); break; +#ifdef WLR_HAS_XWAYLAND case ROOTS_XWAYLAND_VIEW: _surface = wlr_surface_surface_at(view->wlr_surface, view_sx, view_sy, &_sx, &_sy); break; +#endif } if (_surface != NULL) { *sx = _sx; |