Browse Source

Enable alpha blending before drawing `CircleJoint`

master
Krisjanis Rijnieks 9 years ago
parent
commit
3a2ba3a2aa
  1. 3
      src/UserInterface/CircleJoint.cpp

3
src/UserInterface/CircleJoint.cpp

@ -17,10 +17,13 @@ void CircleJoint::draw(){
if(!visible){ if(!visible){
return; return;
} }
if(!enabled){ if(!enabled){
return; return;
} }
ofEnableAlphaBlending();
ofPushStyle(); ofPushStyle();
ofFill(); ofFill();

Loading…
Cancel
Save