added missing call to gimp_window_set_transient(). Fixes bug #348249.

2006-08-07  Sven Neumann  <sven@gimp.org>

	* plug-ins/script-fu/script-fu-interface.c (script_fu_interface):
	added missing call to gimp_window_set_transient(). Fixes bug #348249.
This commit is contained in:
Sven Neumann 2006-08-07 12:02:45 +00:00 committed by Sven Neumann
parent 14b9553a2c
commit 442c66484f
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-08-07 Sven Neumann <sven@gimp.org>
* plug-ins/script-fu/script-fu-interface.c (script_fu_interface):
added missing call to gimp_window_set_transient(). Fixes bug #348249.
2006-08-07 Sven Neumann <sven@gimp.org>
* app/widgets/gimpactiongroup.c

View File

@ -34,7 +34,6 @@
#define RESPONSE_RESET 1
#define RESPONSE_ABOUT 2
#define TEXT_WIDTH 100
#define COLOR_SAMPLE_WIDTH 60
@ -240,6 +239,8 @@ script_fu_interface (SFScript *script)
GTK_RESPONSE_CANCEL,
-1);
gimp_window_set_transient (GTK_WINDOW (dialog));
g_signal_connect (dialog, "response",
G_CALLBACK (script_fu_response),
script);