added a call to by_color_select_close_callback() in _tool_destroy() to
2001-06-01 Dave Neary <dneary@eircom.net> * app/tools/gimpbycolorselecttool.c: added a call to by_color_select_close_callback() in _tool_destroy() to close the dialog on exiting the tool.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2001-06-01 Dave Neary <dneary@eircom.net>
|
||||||
|
|
||||||
|
* app/tools/gimpbycolorselecttool.c: added a call to
|
||||||
|
by_color_select_close_callback() in _tool_destroy() to close
|
||||||
|
the dialog on exiting the tool.
|
||||||
|
|
||||||
2001-05-31 Dave Neary <dneary@eircom.net>
|
2001-05-31 Dave Neary <dneary@eircom.net>
|
||||||
|
|
||||||
* app/core/gimpimage.[ch]
|
* app/core/gimpimage.[ch]
|
||||||
|
@ -327,6 +327,9 @@ gimp_by_color_select_tool_destroy (GtkObject *object)
|
|||||||
{
|
{
|
||||||
if (GTK_OBJECT_CLASS (parent_class)->destroy)
|
if (GTK_OBJECT_CLASS (parent_class)->destroy)
|
||||||
GTK_OBJECT_CLASS (parent_class)->destroy (object);
|
GTK_OBJECT_CLASS (parent_class)->destroy (object);
|
||||||
|
|
||||||
|
if (by_color_dialog)
|
||||||
|
by_color_select_close_callback(NULL, (gpointer) by_color_dialog);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* by_color selection machinery */
|
/* by_color selection machinery */
|
||||||
|
Reference in New Issue
Block a user