update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov
2019-09-03 09:38:19 -05:00
parent 4383e411b3
commit cd2853d91d
6 changed files with 43 additions and 6 deletions

View File

@@ -68,7 +68,7 @@ export const DD = {
if (distance < dragDistance) {
return;
}
node.startDrag(evt);
node.startDrag({ evt });
// a user can stop dragging inside `dragstart`
if (!node.isDragging()) {
return;

View File

@@ -757,7 +757,7 @@ export class Stage extends Container<BaseLayer> {
fireDblClick = true;
clearTimeout(this.dblTimeout);
// Konva.inDblClickWindow = false;
} else if (!DD.justDragged) {
} else if (!DD.justDragged) {
Konva.inDblClickWindow = true;
clearTimeout(this.dblTimeout);
}