raised the idle renderer priority even higher (bug #499150).

2007-11-30  Sven Neumann  <sven@gimp.org>

	* app/core/gimpprojection.c (gimp_projection_idle_render_init):
	raised the idle renderer priority even higher (bug #499150).


svn path=/trunk/; revision=24246
This commit is contained in:
Sven Neumann 2007-11-30 19:23:17 +00:00 committed by Sven Neumann
parent 870ccda6f7
commit 3d25eff39d
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-11-30 Sven Neumann <sven@gimp.org>
* app/core/gimpprojection.c (gimp_projection_idle_render_init):
raised the idle renderer priority even higher (bug #499150).
2007-11-30 Sven Neumann <sven@gimp.org>
* app/base/tile-manager.c (tile_manager_invalidate_area): if no

View File

@ -546,7 +546,9 @@ gimp_projection_idle_render_init (GimpProjection *proj)
gimp_projection_idle_render_next_area (proj);
proj->idle_render.idle_id =
g_idle_add (gimp_projection_idle_render_callback, proj);
g_idle_add_full (G_PRIORITY_HIGH_IDLE,
gimp_projection_idle_render_callback, proj,
NULL);
}
}