summaryrefslogtreecommitdiffstats
path: root/src/vanishing-point.cpp
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2017-06-30 15:39:02 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2017-06-30 15:39:02 +0000
commit9f76180aa2939384a17b4ea85fdfd0c1acbe5736 (patch)
tree8007d5bc53455c845d296885429bea0ed3d6c80d /src/vanishing-point.cpp
parentHackfest: Show dropper color in cursor, while moving the mouse. (diff)
downloadinkscape-9f76180aa2939384a17b4ea85fdfd0c1acbe5736.tar.gz
inkscape-9f76180aa2939384a17b4ea85fdfd0c1acbe5736.zip
Starting selectable knots
Diffstat (limited to 'src/vanishing-point.cpp')
-rw-r--r--src/vanishing-point.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vanishing-point.cpp b/src/vanishing-point.cpp
index ed4a781cf..416f3673c 100644
--- a/src/vanishing-point.cpp
+++ b/src/vanishing-point.cpp
@@ -275,8 +275,8 @@ VPDragger::VPDragger(VPDrag *parent, Geom::Point p, VanishingPoint &vp)
// create the knot
this->knot = new SPKnot(SP_ACTIVE_DESKTOP, NULL);
this->knot->setMode(SP_KNOT_MODE_XOR);
- this->knot->setFill(VP_KNOT_COLOR_NORMAL, VP_KNOT_COLOR_NORMAL, VP_KNOT_COLOR_NORMAL);
- this->knot->setStroke(0x000000ff, 0x000000ff, 0x000000ff);
+ this->knot->setFill(VP_KNOT_COLOR_NORMAL, VP_KNOT_COLOR_NORMAL, VP_KNOT_COLOR_NORMAL, VP_KNOT_COLOR_NORMAL);
+ this->knot->setStroke(0x000000ff, 0x000000ff, 0x000000ff, 0x000000ff);
this->knot->updateCtrl();
knot->item->ctrlType = CTRL_TYPE_ANCHOR;
ControlManager::getManager().track(knot->item);