diff --git a/gdk/macos/gdkmacossurface.c b/gdk/macos/gdkmacossurface.c index a081c818f6..2360e1c476 100644 --- a/gdk/macos/gdkmacossurface.c +++ b/gdk/macos/gdkmacossurface.c @@ -505,7 +505,6 @@ _gdk_macos_surface_new (GdkMacosDisplay *display, { GdkFrameClock *frame_clock; GdkMacosSurface *ret; - NSInteger window_level = NSNormalWindowLevel; g_return_val_if_fail (GDK_IS_MACOS_DISPLAY (display), NULL); @@ -522,12 +521,10 @@ _gdk_macos_surface_new (GdkMacosDisplay *display, case GDK_SURFACE_POPUP: ret = _gdk_macos_popup_surface_new (display, parent, frame_clock, x, y, width, height); - window_level = NSPopUpMenuWindowLevel; break; case GDK_SURFACE_TEMP: ret = _gdk_macos_drag_surface_new (display, frame_clock, x, y, width, height); - window_level = NSPopUpMenuWindowLevel; break; default: @@ -536,10 +533,7 @@ _gdk_macos_surface_new (GdkMacosDisplay *display, } if (ret != NULL) - { - [ret->window setLevel:window_level]; - _gdk_macos_surface_monitor_changed (ret); - } + _gdk_macos_surface_monitor_changed (ret); g_object_unref (frame_clock);