stickers: dragging fixed

This commit is contained in:
muerwre 2018-12-24 18:18:56 +07:00
parent 6a15d98c04
commit eba3db420d

View file

@ -81,6 +81,7 @@ export class Sticker {
onDragStart = e => {
this.preventPropagations(e);
this.marker.dragging.disable();
this.isDragging = true;
@ -101,6 +102,7 @@ export class Sticker {
onDragStop = e => {
this.preventPropagations(e);
this.marker.dragging.enable();
this.triggerOnChange();
this.isDragging = false;