Fix drawing of selected handles.

This commit is contained in:
Jürg Lehni 2013-03-01 18:32:55 -08:00
parent c543704115
commit 532176ac62

View file

@ -1525,7 +1525,7 @@ var Path = this.Path = PathItem.extend(/** @lends Path# */{
// smaller on all sides:
if (!selected) {
ctx.beginPath();
ctx.rect(pX - half - 1, pY - half- 1, size - 2, size - 2);
ctx.rect(pX - half + 1, pY - half + 1, size - 2, size - 2);
ctx.fillStyle = '#ffffff';
ctx.fill();
}