changeset 116:1bd40943dc2a

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.
author gqview
date Tue, 28 Nov 2006 18:20:56 +0000
parents 53b2bfdcff69
children 0c2e1f0a001b
files ChangeLog src/image.c
diffstat 2 files changed, 11 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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  <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
--- 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;