We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b5dc9e + 773f6ac commit 3660b28Copy full SHA for 3660b28
1 file changed
packages/lb-annotation/src/core/toolOperation/pointCloud2dOperation.ts
@@ -144,7 +144,7 @@ class PointCloud2dOperation extends PolygonOperation {
144
145
this.emit('setSelectedIDs', this.selection.selectedIDs);
146
const hoverAttribute = this.polygonList.find((v) => v.id === this.hoverID)?.attribute;
147
- if (hoverAttribute && hoverAttribute !== this.defaultAttribute) {
+ if (this.selection.selectedIDs?.length === 1 && hoverAttribute && hoverAttribute !== this.defaultAttribute) {
148
this.emit('syncAttribute', hoverAttribute);
149
}
150
};
0 commit comments