create the title window as GDK_WINDOW_CHILD, not GDK_WINDOW_TEMP.

2005-10-24  Michael Natterer  <mitch@gimp.org>

	* app/widgets/gimpdockable.c (gimp_dockable_realize): create the
	title window as GDK_WINDOW_CHILD, not GDK_WINDOW_TEMP.
This commit is contained in:
Michael Natterer 2005-10-24 08:50:14 +00:00 committed by Michael Natterer
parent 9b154eb7a3
commit 04221fde4e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-10-24 Michael Natterer <mitch@gimp.org>
* app/widgets/gimpdockable.c (gimp_dockable_realize): create the
title window as GDK_WINDOW_CHILD, not GDK_WINDOW_TEMP.
2005-10-20 Bill Skaggs <weskaggs@primate.ucdavis.edu>
* app/tools/gimprectangletool.c: add "notify" callbacks for changes

View File

@ -378,7 +378,7 @@ gimp_dockable_realize (GtkWidget *widget)
attributes.y = area.y;
attributes.width = area.width;
attributes.height = area.height;
attributes.window_type = GDK_WINDOW_TEMP;
attributes.window_type = GDK_WINDOW_CHILD;
attributes.wclass = GDK_INPUT_ONLY;
attributes.override_redirect = TRUE;
attributes.event_mask = (GDK_BUTTON_PRESS_MASK |