aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xdg_shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/xdg_shell.c')
-rw-r--r--sway/desktop/xdg_shell.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sway/desktop/xdg_shell.c b/sway/desktop/xdg_shell.c
index fdac6171..667fb9e5 100644
--- a/sway/desktop/xdg_shell.c
+++ b/sway/desktop/xdg_shell.c
@@ -211,12 +211,13 @@ static void for_each_surface(struct sway_view *view,
211 user_data); 211 user_data);
212} 212}
213 213
214static void for_each_popup(struct sway_view *view, 214static void for_each_popup_surface(struct sway_view *view,
215 wlr_surface_iterator_func_t iterator, void *user_data) { 215 wlr_surface_iterator_func_t iterator, void *user_data) {
216 if (xdg_shell_view_from_view(view) == NULL) { 216 if (xdg_shell_view_from_view(view) == NULL) {
217 return; 217 return;
218 } 218 }
219 wlr_xdg_surface_for_each_popup(view->wlr_xdg_surface, iterator, user_data); 219 wlr_xdg_surface_for_each_popup_surface(view->wlr_xdg_surface, iterator,
220 user_data);
220} 221}
221 222
222static bool is_transient_for(struct sway_view *child, 223static bool is_transient_for(struct sway_view *child,
@@ -271,7 +272,7 @@ static const struct sway_view_impl view_impl = {
271 .set_resizing = set_resizing, 272 .set_resizing = set_resizing,
272 .wants_floating = wants_floating, 273 .wants_floating = wants_floating,
273 .for_each_surface = for_each_surface, 274 .for_each_surface = for_each_surface,
274 .for_each_popup = for_each_popup, 275 .for_each_popup_surface = for_each_popup_surface,
275 .is_transient_for = is_transient_for, 276 .is_transient_for = is_transient_for,
276 .close = _close, 277 .close = _close,
277 .close_popups = close_popups, 278 .close_popups = close_popups,