From 3ec804f39b487ebe490d7d6d347eba89ae799a49 Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Thu, 15 May 2014 16:37:29 +0200 Subject: [PATCH] Remove joint fill color --- src/ofxBaseJoint.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ofxBaseJoint.cpp b/src/ofxBaseJoint.cpp index 0360a72..75820f5 100644 --- a/src/ofxBaseJoint.cpp +++ b/src/ofxBaseJoint.cpp @@ -61,9 +61,9 @@ bool ofxBaseJoint::isDragged() void ofxBaseJoint::setDefaultColors() { - fillColor = ofColor(0, 255, 255); + fillColor = ofColor(0, 255, 255, 0); strokeColor = ofColor(255, 255, 255); - fillColorSelected = ofColor(255, 255, 0); + fillColorSelected = ofColor(255, 255, 0, 0); strokeColorSelected = ofColor(255, 0, 0); }