From 4389474cb9fd41622dd88ac50afa7743909e8841 Mon Sep 17 00:00:00 2001 From: Klaus Silveira Date: Sat, 14 Mar 2026 10:42:52 -0400 Subject: [PATCH] Fixed bug selecting newly cut faces from CSG subtract. --- radiantcore/brush/csg/CSG.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/radiantcore/brush/csg/CSG.cpp b/radiantcore/brush/csg/CSG.cpp index 43e0bc634..1c5ea0243 100644 --- a/radiantcore/brush/csg/CSG.cpp +++ b/radiantcore/brush/csg/CSG.cpp @@ -342,6 +342,7 @@ class SubtractBrushesFromUnselected : ASSERT_MESSAGE(!(*i)->getBrush().empty(), "brush left with no faces after subtract"); Node_getBrush(newBrush)->copy((*i)->getBrush()); + Node_getBrush(newBrush)->updateFaceVisibility(); } scene::removeNodeFromParent(brushNode);