[gimp] app/vectors: fix up the anchors types which I messed up with my last change.



commit b3e4212dfe3e66706d8dda9a2ac05f5347f45d6a
Author: Simon Budig <simon budig de>
Date:   Mon Feb 1 12:37:04 2016 +0100

    app/vectors: fix up the anchors types which I messed up with my last change.

 app/vectors/gimpbezierstroke.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/app/vectors/gimpbezierstroke.c b/app/vectors/gimpbezierstroke.c
index fc78162..e879d0f 100644
--- a/app/vectors/gimpbezierstroke.c
+++ b/app/vectors/gimpbezierstroke.c
@@ -1687,10 +1687,10 @@ gimp_bezier_stroke_conicto (GimpStroke       *stroke,
                      gimp_anchor_new (GIMP_ANCHOR_CONTROL,
                                       &coords));
   g_queue_push_tail (stroke->anchors,
-                     gimp_anchor_new (GIMP_ANCHOR_CONTROL,
+                     gimp_anchor_new (GIMP_ANCHOR_ANCHOR,
                                       end));
   g_queue_push_tail (stroke->anchors,
-                     gimp_anchor_new (GIMP_ANCHOR_ANCHOR,
+                     gimp_anchor_new (GIMP_ANCHOR_CONTROL,
                                       end));
 }
 
@@ -1710,10 +1710,10 @@ gimp_bezier_stroke_cubicto (GimpStroke       *stroke,
                      gimp_anchor_new (GIMP_ANCHOR_CONTROL,
                                       control2));
   g_queue_push_tail (stroke->anchors,
-                     gimp_anchor_new (GIMP_ANCHOR_CONTROL,
+                     gimp_anchor_new (GIMP_ANCHOR_ANCHOR,
                                       end));
   g_queue_push_tail (stroke->anchors,
-                     gimp_anchor_new (GIMP_ANCHOR_ANCHOR,
+                     gimp_anchor_new (GIMP_ANCHOR_CONTROL,
                                       end));
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]