ENH: CLI: add allow_mix_temp option

jira: no-jira
Change-Id: Idff6ff2f11b4b0a1fb3a4a410fa46c78d38d1a6e
(cherry picked from commit 4ffa7b505a4c1b1f27152c5f5198c9571939de40)
This commit is contained in:
lane.wei
2025-03-27 16:20:48 +08:00
committed by Noisyfox
parent 782c7f1d0c
commit c2fea83e72
2 changed files with 14 additions and 3 deletions

View File

@@ -9495,6 +9495,12 @@ CLIMiscConfigDef::CLIMiscConfigDef()
def->tooltip = L("Allow 3mf with newer version to be sliced.");
def->cli_params = "option";
def->set_default_value(new ConfigOptionBool(false));
def = this->add("allow_mix_temp", coBool);
def->label = "Allow filaments with high/low temperature to be printed together";
def->tooltip = "Allow filaments with high/low temperature to be printed together";
def->cli_params = "option";
def->set_default_value(new ConfigOptionBool(false));
}
const CLIActionsConfigDef cli_actions_config_def;