macos: fix keyboard input on popovers

GdkPopup can also become the "key" window (just not the "main" window).
This commit is contained in:
Christian Hergert
2022-02-16 17:52:42 -08:00
parent 9c1a66518b
commit 853ef43dae

View File

@@ -310,7 +310,7 @@ typedef NSString *CALayerContentsGravity;
-(BOOL)canBecomeKeyWindow
{
return GDK_IS_TOPLEVEL (gdk_surface);
return GDK_IS_TOPLEVEL (gdk_surface) || GDK_IS_POPUP (gdk_surface);
}
-(void)showAndMakeKey:(BOOL)makeKey