From 57297d5ab168bab0fc4f7dfe94c7641f38844d4d Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 1 Jul 2026 17:46:53 +0800 Subject: [PATCH] keep harmless sla normalize --- src/libslic3r/PresetBundle.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/PresetBundle.cpp b/src/libslic3r/PresetBundle.cpp index e9ff279ded..853b61b093 100644 --- a/src/libslic3r/PresetBundle.cpp +++ b/src/libslic3r/PresetBundle.cpp @@ -5290,9 +5290,9 @@ void PresetBundle::normalize_compatible_presets() } }; normalize(this->prints, this->printers, nullptr); - // normalize(this->sla_prints, this->printers, nullptr); normalize(this->filaments, this->printers, &this->prints); - // normalize(this->sla_materials, this->printers, &this->sla_prints); + normalize(this->sla_prints, this->printers, nullptr); + normalize(this->sla_materials, this->printers, &this->sla_prints); } void PresetBundle::update_compatible(PresetSelectCompatibleType select_other_print_if_incompatible, PresetSelectCompatibleType select_other_filament_if_incompatible)