FIX: the preset is the same with the first one when switching printers

Jira: STUDIO-5433

Signed-off-by: wenjie.guo <wenjie.guo@bambulab.com>
Change-Id: Icf1979f2bcffbc9c59a072924df5073fc3eac363
This commit is contained in:
wenjie.guo
2023-12-14 22:08:53 +08:00
committed by Lane.Wei
parent b0842857ca
commit 270e3724a2
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -1717,7 +1717,7 @@ void PresetBundle::set_num_filaments(unsigned int n, std::string new_color)
{
int old_filament_count = this->filament_presets.size();
if (n > old_filament_count && old_filament_count != 0)
filament_presets.resize(n, filament_presets.front());
filament_presets.resize(n, filament_presets.back());
else {
filament_presets.resize(n);
}