We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bb6503 commit 7b9b565Copy full SHA for 7b9b565
Libs/Groom/Groom.cpp
@@ -994,9 +994,12 @@ void Groom::clear_unused_shared_boundaries() {
994
project_->set_original_domain_types(original_domain_types);
995
project_->set_groomed_domain_types(groomed_domain_types);
996
997
- // Clean up files from all subjects
+ // Clean up files from all non-fixed subjects
998
auto subjects = project_->get_subjects();
999
for (auto& subject : subjects) {
1000
+ if (subject->is_fixed()) {
1001
+ continue; // Skip fixed subjects
1002
+ }
1003
// Remove shared surface/boundary files using lambda
1004
auto original_filenames = subject->get_original_filenames();
1005
remove_shared_files(original_filenames);
0 commit comments