Commit 0adf4b7c authored by techird's avatar techird

增加一个像素的点击区域

parent 95012759
...@@ -171,9 +171,9 @@ KityMinder.registerModule('Expand', function() { ...@@ -171,9 +171,9 @@ KityMinder.registerModule('Expand', function() {
constructor: function(node) { constructor: function(node) {
this.callBase(); this.callBase();
this.radius = 5; this.radius = 6;
this.outline = new kity.Circle(this.radius).stroke('gray').fill('white'); this.outline = new kity.Circle(this.radius).stroke('gray').fill('white');
this.sign = new kity.Path().stroke('black'); this.sign = new kity.Path().stroke('gray');
this.addShapes([this.outline, this.sign]); this.addShapes([this.outline, this.sign]);
this.initEvent(node); this.initEvent(node);
this.setId(KityMinder.uuid('node_expander')); this.setId(KityMinder.uuid('node_expander'));
......
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