added GDK_HINT_USER_POS again since it's set by

2003-01-14  Michael Natterer  <mitch@gimp.org>

	* app/widgets/gimptoolbox.c (gimp_toolbox_set_geometry): added
	GDK_HINT_USER_POS again since it's set by gdk_window_parse_geometry()
	in gimpdialogfactory.c and we don't want to reset it.
This commit is contained in:
Michael Natterer 2003-01-14 22:06:06 +00:00 committed by Michael Natterer
parent 7e1396f9bf
commit 834058e963
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2003-01-14 Michael Natterer <mitch@gimp.org>
* app/widgets/gimptoolbox.c (gimp_toolbox_set_geometry): added
GDK_HINT_USER_POS again since it's set by gdk_window_parse_geometry()
in gimpdialogfactory.c and we don't want to reset it.
2003-01-14 Michael Natterer <mitch@gimp.org>
* app/tools/gimpbezierselecttool.c

View file

@ -416,7 +416,9 @@ gimp_toolbox_set_geometry (GimpToolbox *toolbox)
gtk_window_set_geometry_hints (GTK_WINDOW (toolbox),
NULL,
&geometry,
GDK_HINT_MIN_SIZE | GDK_HINT_RESIZE_INC);
GDK_HINT_MIN_SIZE |
GDK_HINT_RESIZE_INC |
GDK_HINT_USER_POS);
}
}