Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions client/src/layers/AnnotationLayers/RectangleLayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,11 @@ export default class RectangleLayer extends BaseLayer<RectGeoJSData> {
return this.typeStyling.value.color('');
},
fill: (data) => {
// When the detection has a polygon the fill belongs to the polygon,
// never the surrounding rectangle
if (data.hasPoly) {
return false;
}
if (data.set) {
return this.typeStyling.value.fill(data.set, true);
}
Expand Down
Loading