Don't let temp windows become key window.

2007-06-05  Richard Hult  <richard@imendio.com>

	* gdk/quartz/GdkQuartzWindow.c: Don't let temp windows become key
	window.

svn path=/trunk/; revision=18046
This commit is contained in:
Richard Hult 2007-06-06 08:21:14 +00:00 committed by Richard Hult
parent c62db99be2
commit 949a86729d
2 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2007-06-05 Richard Hult <richard@imendio.com>
* gdk/quartz/GdkQuartzWindow.c: Don't let temp windows become key
window.
2007-06-06 Tor Lillqvist <tml@novell.com>
* gdk/x11/gdkwindow-x11.c (gdk_window_set_opacity): Fix

View File

@ -179,13 +179,11 @@
if (!private->accept_focus)
return NO;
/* FIXME: Is this right? If so, the switch shouldn't be needed. Need
* this + some tweaking to the event/grab code to get menus
* working...
/* Popup windows should not be able to get focused in the window
* manager sense, it's only handled through grabs.
*/
/*if (private->window_type == GDK_WINDOW_TEMP)
if (private->window_type == GDK_WINDOW_TEMP)
return NO;
*/
switch (impl->type_hint)
{