Tue Nov 28 13:17:18 2006 John Ellis <johne@verizon.net>
authorJohn Ellis <johne@verizon.net>
Tue, 28 Nov 2006 18:20:56 +0000 (18:20 +0000)
committerJohn Ellis <johne@verizon.net>
Tue, 28 Nov 2006 18:20:56 +0000 (18:20 +0000)
        * 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.

ChangeLog
src/image.c

index a5577a9..55c4394 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Nov 28 13:17:18 2006  John Ellis  <johne@verizon.net>
+
+       * 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  <johne@verizon.net>
 
        * color-man.[ch]: Allow color manager to work with GdkPixbufs not
index 687ff8c..810bc1b 100644 (file)
@@ -364,7 +364,11 @@ static gint image_post_process_color(ImageWindow *imd, gint start_row, ExifData
 
        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;