Fix flow dynamics calib crash when last bed type is selected (#8014)

Fix flow dynamics calib crash when last bed type is selected (SoftFever/OrcaSlicer#7857)
This commit is contained in:
Noisyfox 2025-01-22 10:02:07 +08:00 committed by GitHub
parent 22dc0b1212
commit 64153c7968
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,12 +24,14 @@ static const std::string temp_gcode_path = temp_dir + "/temp.gcode";
static const std::string path = temp_dir + "/test.3mf";
static const std::string config_3mf_path = temp_dir + "/test_config.3mf";
static std::string MachineBedTypeString[5] = {
static std::string MachineBedTypeString[7] = {
"auto",
"suprtack",
"pc",
"ep",
"pei",
"pte"
"pte",
"pct",
};