From d41adc5e93ca35f9672cd8e910f4ba9c0c63b96f Mon Sep 17 00:00:00 2001 From: Garux Date: Fri, 16 Dec 2022 00:53:04 +0600 Subject: [PATCH] * use bounding box for misc_model transformations --- radiant/selection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radiant/selection.cpp b/radiant/selection.cpp index 22afe7c4..bec4c6b0 100644 --- a/radiant/selection.cpp +++ b/radiant/selection.cpp @@ -7772,7 +7772,7 @@ bool RadiantSelectionSystem::endMove(){ inline AABB Instance_getPivotBounds( scene::Instance& instance ){ Entity* entity = Node_getEntity( instance.path().top() ); - if ( entity != 0 + if ( entity != 0 && !entity->getEntityClass().miscmodel_is && ( entity->getEntityClass().fixedsize || !node_is_group( instance.path().top() ) ) ) { Editable* editable = Node_getEditable( instance.path().top() );