From: Carlos Lopez Date: Tue, 14 Sep 2010 15:02:42 +0000 (+0200) Subject: Make both tangents yellow now that we don't need to distinguish colour to do linking X-Git-Url: https://git.pterodactylus.net/?p=synfig.git;a=commitdiff_plain;h=ff4594278d9ae46aa2964b9e5ff38e782dc388ff Make both tangents yellow now that we don't need to distinguish colour to do linking --- diff --git a/synfig-studio/src/gui/workarearenderer/renderer_ducks.cpp b/synfig-studio/src/gui/workarearenderer/renderer_ducks.cpp index 5ad88cb..030a91d 100644 --- a/synfig-studio/src/gui/workarearenderer/renderer_ducks.cpp +++ b/synfig-studio/src/gui/workarearenderer/renderer_ducks.cpp @@ -304,7 +304,7 @@ Renderer_Ducks::render_vfunc( if(!(*iter)->get_editable()) screen_duck.color=(DUCK_COLOR_NOT_EDITABLE); else if((*iter)->get_tangent()) - screen_duck.color=((*iter)->get_scalar()<0 ? DUCK_COLOR_TANGENT_1 : DUCK_COLOR_TANGENT_2); + screen_duck.color=((*iter)->get_scalar()<0 ? DUCK_COLOR_TANGENT_1 : DUCK_COLOR_TANGENT_1); else if((*iter)->get_type()&Duck::TYPE_VERTEX) screen_duck.color=DUCK_COLOR_VERTEX; else if((*iter)->get_type()&Duck::TYPE_RADIUS)