We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 225e205 commit f7b62eeCopy full SHA for f7b62ee
client/src/components/annotator/tools/DEXTRTool.vue
@@ -46,6 +46,7 @@ export default {
46
let points = this.points;
47
this.points = [];
48
49
+ let currentAnnotation = this.$parent.currentAnnotation;
50
let pointsList = [];
51
let width = this.$parent.image.raster.width / 2;
52
let height = this.$parent.image.raster.height / 2;
@@ -81,7 +82,7 @@ export default {
81
82
compoundPath.addChild(path);
83
}
84
- this.$parent.uniteCurrentAnnotation(compoundPath);
85
+ currentAnnotation.unite(compoundPath);
86
})
87
.finally(() => points.forEach(point => point.remove()));
88
0 commit comments