Commit ec84f8e8 authored by techird's avatar techird

修复进度完成的对勾消失的问题

parent 6e392b2f
...@@ -30,10 +30,11 @@ KityMinder.registerModule('ProgressModule', function() { ...@@ -30,10 +30,11 @@ KityMinder.registerModule('ProgressModule', function() {
var check = new kity.Path() var check = new kity.Path()
.getDrawer() .getDrawer()
.moveTo(-3, 0) .moveTo(-3, -1)
.lineTo(-1, 3) .lineTo(-1, 2)
.lineTo(3, -2) .lineTo(3, -3)
.getPath() .getPath()
.stroke('white', 2)
.setVisible(false); .setVisible(false);
this.addShapes([circle, pie, check]); this.addShapes([circle, pie, check]);
......
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