applied patch from Shlomi Fish that fixes an obvious cut'n'paste bug in

2003-12-20  Sven Neumann  <sven@gimp.org>

	* app/gui/gradient-editor-commands.c
	(gradient_editor_replicate_response): applied patch from Shlomi Fish
	that fixes an obvious cut'n'paste bug in the code that replicates a
	gradient segment (bug #129738).
This commit is contained in:
Sven Neumann
2003-12-20 17:49:50 +00:00
committed by Sven Neumann
parent 4ffc8a7510
commit ec056d57a8
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2003-12-20 Sven Neumann <sven@gimp.org>
* app/gui/gradient-editor-commands.c
(gradient_editor_replicate_response): applied patch from Shlomi Fish
that fixes an obvious cut'n'paste bug in the code that replicates a
gradient segment (bug #129738).
2003-12-19 Jakub Steiner <jimmac@ximian.com>
* data/images/gimp_logo.png: it's here! soon!

View File

@ -1164,7 +1164,7 @@ gradient_editor_replicate_response (GtkWidget *widget,
seg->middle = new_left + factor * (oseg->middle - sel_left);
seg->right = new_left + factor * (oseg->right - sel_left);
seg->left_color = oseg->right_color;
seg->left_color = oseg->left_color;
seg->right_color = oseg->right_color;
seg->type = oseg->type;

View File

@ -1164,7 +1164,7 @@ gradient_editor_replicate_response (GtkWidget *widget,
seg->middle = new_left + factor * (oseg->middle - sel_left);
seg->right = new_left + factor * (oseg->right - sel_left);
seg->left_color = oseg->right_color;
seg->left_color = oseg->left_color;
seg->right_color = oseg->right_color;
seg->type = oseg->type;