mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-02-19 19:12:23 -07: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:
parent
093367a58e
commit
247a811900
442 changed files with 1037 additions and 1037 deletions
|
|
@ -5803,7 +5803,7 @@ double GCode::calc_max_volumetric_speed(const double layer_height, const double
|
|||
std::stringstream ss(co_str);
|
||||
std::string token;
|
||||
|
||||
while (std::getline(ss, token, ';')) {
|
||||
while (std::getline(ss, token, ' ')) {
|
||||
try {
|
||||
cs.push_back(std::stod(token));
|
||||
} catch (...) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue