aboutsummaryrefslogtreecommitdiff
path: root/sway/tree/view.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-08-02 09:05:46 -0400
committerDrew DeVault <sir@cmpwn.com>2018-08-02 09:05:46 -0400
commit9aa258d33a9baa42895214da7e82f4568fcb8f76 (patch)
tree229419214ed67a2e4237b36cf0d1185f1406dad1 /sway/tree/view.c
parent8e60f6a73263c444ab5fecdeacdaf7883a9b1505 (diff)
Revert "Fix popups"
This reverts commit de86d65627e96cffe77f4abf11c4a0b982326ff9.
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r--sway/tree/view.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 97318daa..27a6a8bd 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -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);