mirror of https://github.com/GNOME/gimp.git
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:
parent
9b154eb7a3
commit
04221fde4e
|
@ -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
|
||||
|
|
|
@ -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 |
|
||||
|
|
Loading…
Reference in New Issue