[gtk: 1/3] wayland/popup: Remove unnecessary checks when mapping popup



commit 71323a8b48f6f99798ca0090e1de76ad8e0a6cb3
Author: Jonas Ã…dahl <jadahl gmail com>
Date:   Sat Feb 22 20:08:37 2020 +0100

    wayland/popup: Remove unnecessary checks when mapping popup
    
    We only call this when we're not already mapped so don't check that. We
    also only call this when we should be mapped so don't check that either.

 gdk/wayland/gdksurface-wayland.c | 6 ------
 1 file changed, 6 deletions(-)
---
diff --git a/gdk/wayland/gdksurface-wayland.c b/gdk/wayland/gdksurface-wayland.c
index 2174bdf72a..e4fdae3122 100644
--- a/gdk/wayland/gdksurface-wayland.c
+++ b/gdk/wayland/gdksurface-wayland.c
@@ -2697,12 +2697,6 @@ gdk_wayland_surface_map_popup (GdkSurface     *surface,
   GdkSurface *parent;
   GdkWaylandSeat *grab_input_seat;
 
-  if (!should_be_mapped (surface))
-    return;
-
-  if (impl->mapped)
-    return;
-
   parent = surface->parent;
   if (!parent)
     {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]