summaryrefslogtreecommitdiff
path: root/gdk/wayland/gdksurface-wayland.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdk/wayland/gdksurface-wayland.c')
-rw-r--r--gdk/wayland/gdksurface-wayland.c26
1 files changed, 2 insertions, 24 deletions
diff --git a/gdk/wayland/gdksurface-wayland.c b/gdk/wayland/gdksurface-wayland.c
index ae76c4313d..748109eca0 100644
--- a/gdk/wayland/gdksurface-wayland.c
+++ b/gdk/wayland/gdksurface-wayland.c
@@ -520,7 +520,6 @@ gdk_wayland_surface_update_scale (GdkSurface *surface)
GdkWaylandDisplay *display_wayland = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
guint32 scale;
GSList *l;
- GList *children, *c;
if (display_wayland->compositor_version < WL_SURFACE_HAS_BUFFER_SCALE)
{
@@ -537,14 +536,6 @@ gdk_wayland_surface_update_scale (GdkSurface *surface)
/* Notify app that scale changed */
gdk_wayland_surface_maybe_configure (surface, surface->width, surface->height, scale);
-
- children = gdk_surface_get_children (surface);
- for (c = children; c; c = c->next)
- {
- GdkSurface *child = c->data;
- gdk_wayland_surface_update_scale (child);
- }
- g_list_free (children);
}
static void gdk_wayland_surface_create_surface (GdkSurface *surface);
@@ -1708,19 +1699,6 @@ get_real_parent_and_translate (GdkSurface *surface,
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
GdkSurface *parent = impl->transient_for;
- while (parent)
- {
- GdkSurface *effective_parent = gdk_surface_get_parent (parent);
-
- if (gdk_surface_has_native (parent) && !effective_parent)
- break;
-
- *x += parent->x;
- *y += parent->y;
-
- parent = effective_parent;
- }
-
return parent;
}
@@ -2459,7 +2437,7 @@ gdk_wayland_surface_map (GdkSurface *surface)
}
if (transient_for)
- transient_for = get_popup_parent (gdk_surface_get_toplevel (transient_for));
+ transient_for = get_popup_parent (transient_for);
/* If the position was not explicitly set, start the popup at the
* position of the device that holds the grab.
@@ -2470,7 +2448,7 @@ gdk_wayland_surface_map (GdkSurface *surface)
}
else
{
- transient_for = gdk_surface_get_toplevel (impl->transient_for);
+ transient_for = impl->transient_for;
transient_for = get_popup_parent (transient_for);
}