# HG changeset patch # User gqview # Date 1164738056 0 # Node ID 1bd40943dc2a02eaa20defff184320c536ffa158 # Parent 53b2bfdcff69539926ae8065fbed3b0b39d282bf Tue Nov 28 13:17:18 2006 John Ellis * image.c: When resuming a previous color adjustment, set the display to update incrementally to avoid user confusion of why half of image is color adjusted. diff -r 53b2bfdcff69 -r 1bd40943dc2a ChangeLog --- a/ChangeLog Tue Nov 28 17:06:47 2006 +0000 +++ b/ChangeLog Tue Nov 28 18:20:56 2006 +0000 @@ -1,3 +1,9 @@ +Tue Nov 28 13:17:18 2006 John Ellis + + * image.c: When resuming a previous color adjustment, set the display + to update incrementally to avoid user confusion of why half of image + is color adjusted. + Tue Nov 28 11:54:30 2006 John Ellis * color-man.[ch]: Allow color manager to work with GdkPixbufs not diff -r 53b2bfdcff69 -r 1bd40943dc2a src/image.c --- a/src/image.c Tue Nov 28 17:06:47 2006 +0000 +++ b/src/image.c Tue Nov 28 18:20:56 2006 +0000 @@ -364,7 +364,11 @@ if (cm) { - if (start_row > 0) cm->row = start_row; + if (start_row > 0) + { + cm->row = start_row; + cm->incremental_sync = TRUE; + } imd->cm = (gpointer)cm; return TRUE;