Commit 09817004 authored by Akikonata's avatar Akikonata

updated icon

parent 81f95727
...@@ -34,7 +34,10 @@ KityMinder.registerModule( "IconModule", function () { ...@@ -34,7 +34,10 @@ KityMinder.registerModule( "IconModule", function () {
d.carcTo( 6, 0, 6, 1, 0 ); d.carcTo( 6, 0, 6, 1, 0 );
break; break;
case 5: case 5:
_percent.addShape( new kity.Circle().setRadius( 6 ).fill( "#29A6BD" ) ); var check = new kity.Path();
_percent.addShapes( [ new kity.Circle().setRadius( 6 ).fill( "#29A6BD" ), check ] );
check.getDrawer().moveTo( -3, 0 ).lineTo( -1, 3 ).lineTo( 3, -2 );
check.stroke( new kity.Pen( "white", 2 ).setLineCap( "round" ) );
break; break;
} }
if ( val < 5 ) d.close(); if ( val < 5 ) d.close();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment