diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-05-14 08:33:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-14 08:33:55 -0400 |
commit | 1837756dbed222a6233366f186693e1aeefc2439 (patch) | |
tree | 9793561e72a8d1b1f948080b5e36f98dbfa89619 /sway/tree/container.c | |
parent | 4e6cb2b4b2cff21ca1ec751986d8a2e138ea1ed5 (diff) | |
parent | 95a10dd4f35c6ffc14d23fa3a19a784e85a31724 (diff) | |
download | sway-1837756dbed222a6233366f186693e1aeefc2439.tar.xz |
Merge pull request #1871 from emersion/kill-wl-shell
Kill wl_shell
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r-- | sway/tree/container.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 9f7294db..a17b20f7 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -6,7 +6,6 @@ #include <strings.h> #include <wayland-server.h> #include <wlr/types/wlr_output_layout.h> -#include <wlr/types/wlr_wl_shell.h> #include <wlr/types/wlr_xdg_shell_v6.h> #include <wlr/types/wlr_xdg_shell.h> #include "cairo.h" @@ -446,11 +445,6 @@ struct sway_container *container_at(struct sway_container *parent, _surface = wlr_surface_surface_at(sview->surface, view_sx, view_sy, &_sx, &_sy); break; - case SWAY_VIEW_WL_SHELL: - _surface = wlr_wl_shell_surface_surface_at( - sview->wlr_wl_shell_surface, - view_sx, view_sy, &_sx, &_sy); - break; case SWAY_VIEW_XDG_SHELL_V6: // the top left corner of the sway container is the // coordinate of the top left corner of the window geometry |