[gimp/wip/gradient-edit: 20/35] app: use get_{left, right}_flat_color() in gradient editor
- From: N/A <ell src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/wip/gradient-edit: 20/35] app: use get_{left, right}_flat_color() in gradient editor
- Date: Sun, 6 Aug 2017 13:21:03 +0000 (UTC)
commit 8164e726bee9caa10e492fb12bc2b13bc8c9cc95
Author: Ell <ell_se yahoo com>
Date: Tue Aug 1 07:39:23 2017 -0400
app: use get_{left,right}_flat_color() in gradient editor
Use gimp_gradient_get_{left,right}_flat_color(), instead of
gimp_gradient_get_color_at(), to get the selection endpoints'
colors in the gradient editor, so that the correct colors are used
even in extreme cases.
app/actions/gradient-editor-actions.c | 30 ++++++++++++++++--------------
1 files changed, 16 insertions(+), 14 deletions(-)
---
diff --git a/app/actions/gradient-editor-actions.c b/app/actions/gradient-editor-actions.c
index 30f9f78..371e544 100644
--- a/app/actions/gradient-editor-actions.c
+++ b/app/actions/gradient-editor-actions.c
@@ -491,33 +491,35 @@ gradient_editor_actions_update (GimpActionGroup *group,
if (data_editor->data_editable)
editable = TRUE;
- gimp_gradient_get_color_at (gradient, data_editor->context,
- editor->control_sel_l,
- editor->control_sel_l->left, FALSE,
- &left_color);
+ gimp_gradient_segment_get_left_flat_color (gradient,
+ data_editor->context,
+ editor->control_sel_l,
+ &left_color);
if (editor->control_sel_l->prev)
left_seg = editor->control_sel_l->prev;
else
left_seg = gimp_gradient_segment_get_last (editor->control_sel_l);
- gimp_gradient_get_color_at (gradient, data_editor->context,
- left_seg, left_seg->right, FALSE,
- &left_seg_color);
+ gimp_gradient_segment_get_right_flat_color (gradient,
+ data_editor->context,
+ left_seg,
+ &left_seg_color);
- gimp_gradient_get_color_at (gradient, data_editor->context,
- editor->control_sel_r,
- editor->control_sel_r->right, FALSE,
- &right_color);
+ gimp_gradient_segment_get_right_flat_color (gradient,
+ data_editor->context,
+ editor->control_sel_r,
+ &right_color);
if (editor->control_sel_r->next)
right_seg = editor->control_sel_r->next;
else
right_seg = gimp_gradient_segment_get_first (editor->control_sel_r);
- gimp_gradient_get_color_at (gradient, data_editor->context,
- right_seg, right_seg->left, FALSE,
- &right_seg_color);
+ gimp_gradient_segment_get_left_flat_color (gradient,
+ data_editor->context,
+ right_seg,
+ &right_seg_color);
left_editable = (editor->control_sel_l->left_color_type ==
GIMP_GRADIENT_COLOR_FIXED);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]