mirror of https://github.com/GNOME/gimp.git
connect the destroy signal of images to lc_dialog_update_cb
* app/layers_dialog.c: connect the destroy signal of images to lc_dialog_update_cb
This commit is contained in:
parent
99c0d4a1eb
commit
c6895a2103
|
@ -1,3 +1,8 @@
|
|||
1999-01-20 Jay Cox <jaycox@earthlink.net>
|
||||
|
||||
* app/layers_dialog.c: connect the destroy signal of images to
|
||||
lc_dialog_update_cb
|
||||
|
||||
1999-01-19 Jay Cox <jaycox@earthlink.net>
|
||||
|
||||
* app/brush_select.c: make the edit button active if the default
|
||||
|
|
|
@ -894,6 +894,10 @@ layers_dialog_update (GimpImage* gimage)
|
|||
if (item_list)
|
||||
gtk_list_insert_items (GTK_LIST (layersD->layer_list), item_list, 0);
|
||||
|
||||
gtk_signal_connect (GIMP_OBJECT (gimage),
|
||||
"destroy",
|
||||
GTK_SIGNAL_FUNC (lc_dialog_update_cb),
|
||||
NULL);
|
||||
suspend_gimage_notify--;
|
||||
}
|
||||
|
||||
|
|
|
@ -894,6 +894,10 @@ layers_dialog_update (GimpImage* gimage)
|
|||
if (item_list)
|
||||
gtk_list_insert_items (GTK_LIST (layersD->layer_list), item_list, 0);
|
||||
|
||||
gtk_signal_connect (GIMP_OBJECT (gimage),
|
||||
"destroy",
|
||||
GTK_SIGNAL_FUNC (lc_dialog_update_cb),
|
||||
NULL);
|
||||
suspend_gimage_notify--;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue