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:

committed by
Sven Neumann

parent
4ffc8a7510
commit
ec056d57a8
@ -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!
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user