diff --git a/src/plugins/imagery/components/AnnotationsCanvas.vue b/src/plugins/imagery/components/AnnotationsCanvas.vue index 53bef32799..c8924df896 100644 --- a/src/plugins/imagery/components/AnnotationsCanvas.vue +++ b/src/plugins/imagery/components/AnnotationsCanvas.vue @@ -315,6 +315,7 @@ export default { return selection; }, startAnnotationDrag(event) { + this.$emit('annotationMarqueed'); this.newAnnotationRectangle = {}; const boundingRect = this.canvas.getBoundingClientRect(); const scaleX = this.canvas.width / boundingRect.width; diff --git a/src/plugins/imagery/components/ImageryView.vue b/src/plugins/imagery/components/ImageryView.vue index 82bebbc587..ad0f0148c0 100644 --- a/src/plugins/imagery/components/ImageryView.vue +++ b/src/plugins/imagery/components/ImageryView.vue @@ -100,6 +100,7 @@ v-if="shouldDisplayAnnotations" :image="focusedImage" :imagery-annotations="imageryAnnotations[focusedImage.time]" + @annotationMarqueed="handlePauseButton(true)" />