aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/xdg_activation_v1.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/xdg_activation_v1.c b/sway/xdg_activation_v1.c
index 6c70c785..99e7f9b5 100644
--- a/sway/xdg_activation_v1.c
+++ b/sway/xdg_activation_v1.c
@@ -11,6 +11,9 @@ void xdg_activation_v1_handle_request_activate(struct wl_listener *listener,
11 11
12 struct wlr_xdg_surface *xdg_surface = 12 struct wlr_xdg_surface *xdg_surface =
13 wlr_xdg_surface_from_wlr_surface(event->surface); 13 wlr_xdg_surface_from_wlr_surface(event->surface);
14 if (xdg_surface == NULL) {
15 return;
16 }
14 struct sway_view *view = xdg_surface->data; 17 struct sway_view *view = xdg_surface->data;
15 if (!xdg_surface->mapped || view == NULL) { 18 if (!xdg_surface->mapped || view == NULL) {
16 return; 19 return;