added another call to gimp_progress_update().

2005-08-08  Sven Neumann  <sven@gimp.org>

	* app/base/siox.c: added another call to gimp_progress_update().

	* app/core/gimp.c (gimp_init): fixed harmless cut-n-paste error.
This commit is contained in:
Sven Neumann 2005-08-08 17:38:25 +00:00 committed by Sven Neumann
parent 5c6b8e9f79
commit 651aca218a
3 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2005-08-08 Sven Neumann <sven@gimp.org>
* app/base/siox.c: added another call to gimp_progress_update().
* app/core/gimp.c (gimp_init): fixed harmless cut-n-paste error.
2005-08-08 Sven Neumann <sven@gimp.org>
* app/core/gimpscanconvert.[ch]: added the possibility to specify

View File

@ -943,7 +943,7 @@ siox_foreground_extract (TileManager *pixels,
g_free (fgsig);
g_free (bgsig);
siox_progress_update (progress_callback, progress_data, 0.9);
siox_progress_update (progress_callback, progress_data, 0.8);
/* smooth a bit for error killing */
smooth_mask (mask, x, y, width, height);
@ -956,6 +956,8 @@ siox_foreground_extract (TileManager *pixels,
/* search the biggest connected component */
find_max_blob (mask, x, y, width, height);
siox_progress_update (progress_callback, progress_data, 0.9);
/* smooth again - as user specified */
for (i = 0; i < smoothness; i++)
smooth_mask (mask, x, y, width, height);

View File

@ -278,7 +278,7 @@ gimp_init (Gimp *gimp)
gimp->documents = gimp_document_list_new (gimp);
gimp->templates = gimp_list_new (GIMP_TYPE_TEMPLATE, TRUE);
gimp_object_set_name (GIMP_OBJECT (gimp->tool_info_list), "templates");
gimp_object_set_name (GIMP_OBJECT (gimp->templates), "templates");
gimp->image_new_last_template = NULL;
gimp->have_current_cut_buffer = FALSE;