The "Default Filament" may saved in the OrcaSlicer.conf which caused … (#13570)

The "Default Filament" may saved in the OrcaSlicer.conf which caused misleading confusions. Ignore it so Orca won't select it on next loading.
This commit is contained in:
SoftFever
2026-05-11 22:11:26 +08:00
committed by GitHub
parent f90ca09b3d
commit 107c2dfbbd
4 changed files with 13 additions and 7 deletions

View File

@@ -156,7 +156,7 @@ void SavePresetDialog::Item::update()
}
if (m_valid_type == Valid &&
(m_preset_name == "Default Setting" || m_preset_name == "Default Filament" || m_preset_name == "Default Printer")) {
(m_preset_name == "Default Setting" || m_preset_name == PresetBundle::ORCA_DEFAULT_FILAMENT_PLACEHOLDER || m_preset_name == "Default Printer")) {
info_line = _L("Name is unavailable.");
m_valid_type = NoValid;
}