Don't show handles when fully selected, it is too crowded

This commit is contained in:
DD 2017-12-18 12:01:45 -05:00
parent bf2a405ede
commit f2ae9bc6db

View file

@ -2321,7 +2321,8 @@ new function() { // Scope for drawing
drawSegments(ctx, this, matrix);
// Now stroke it and draw its handles:
ctx.stroke();
drawHandles(ctx, this._segments, matrix, paper.settings.handleSize);
drawHandles(ctx, this._segments, matrix, paper.settings.handleSize,
this.isFullySelected());
}
};
},