Skip to content

Commit

Permalink
WIP: optional entity rects
Browse files Browse the repository at this point in the history
  • Loading branch information
grtlr committed Nov 20, 2024
1 parent 7adad6b commit 8e5ab19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/viewer/re_space_view_graph/src/view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ impl SpaceViewClass for GraphSpaceView {
}

// Draw entity rect.
if entity_rect.is_positive() {
if graphs.len() > 1 && entity_rect.is_positive() {
let response = scene.entity(entity, entity_rect, &query.highlights);

let instance_path = InstancePath::entity_all((*entity).clone());
Expand Down

0 comments on commit 8e5ab19

Please sign in to comment.