Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
#5584: Brushes are highlighted as a whole if the parent node is selected
  • Loading branch information
codereader committed Dec 17, 2021
1 parent 9fdb191 commit 55bdb3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radiantcore/brush/BrushNode.cpp
Expand Up @@ -403,7 +403,7 @@ void BrushNode::renderHighlights(IRenderableCollector& collector, const VolumeTe
{
// Check for the override status of this brush
bool forceVisible = isForcedVisible();
bool wholeBrushSelected = isSelected();
bool wholeBrushSelected = isSelected() || Node_isSelected(getParent());

collector.setHighlightFlag(IRenderableCollector::Highlight::Primitives, wholeBrushSelected);

Expand Down

0 comments on commit 55bdb3f

Please sign in to comment.