Revert "Fix popups"

This reverts commit de86d65627.
This commit is contained in:
Drew DeVault 2018-08-02 09:05:46 -04:00
parent 8e60f6a732
commit 9aa258d33a
10 changed files with 55 additions and 197 deletions

View file

@ -339,16 +339,6 @@ void view_for_each_surface(struct sway_view *view,
}
}
void view_for_each_popup(struct sway_view *view,
wlr_surface_iterator_func_t iterator, void *user_data) {
if (!view->surface) {
return;
}
if (view->impl->for_each_popup) {
view->impl->for_each_popup(view, iterator, user_data);
}
}
static void view_subsurface_create(struct sway_view *view,
struct wlr_subsurface *subsurface);