mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
Fix: Modify the string delimiter of parameter “volumetric_speed_coefficients”: change “;” to “ ”
Jira: none Change-Id: Iabe29c14b5d4dadc97d3ea72c4be4104a0e48720 (cherry picked from commit 3a3ed5816b7a70669561d0a33ca6fb9761ab40d2)
This commit is contained in:
@@ -3823,7 +3823,7 @@ void TabFilament::build()
|
||||
|
||||
//BBS
|
||||
optgroup = page->new_optgroup(L("Volumetric speed limitation"), L"param_volumetric_speed");
|
||||
optgroup->append_single_option_line("filament_adaptive_volumetric_speed");
|
||||
optgroup->append_single_option_line("filament_adaptive_volumetric_speed", "", 0);
|
||||
optgroup->append_single_option_line("filament_max_volumetric_speed");
|
||||
|
||||
//line = { "", "" };
|
||||
@@ -4090,8 +4090,8 @@ void TabFilament::toggle_options()
|
||||
toggle_line("chamber_temperature", support_chamber_temp_control);
|
||||
|
||||
std::string volumetric_speed_cos = m_config->opt_string("volumetric_speed_coefficients", 0u);
|
||||
bool enable_fit = volumetric_speed_cos != "0;0;0;0;0;0";
|
||||
toggle_option("filament_adaptive_volumetric_speed", enable_fit);
|
||||
bool enable_fit = volumetric_speed_cos != "0 0 0 0 0 0";
|
||||
toggle_option("filament_adaptive_volumetric_speed", enable_fit, 256 + 0u);
|
||||
}
|
||||
|
||||
if (m_active_page->title() == L("Setting Overrides"))
|
||||
|
||||
Reference in New Issue
Block a user