From 0c3055fd138851d45bc67a662918451fa1db812e Mon Sep 17 00:00:00 2001 From: SoftFever Date: Fri, 16 Jan 2026 00:48:50 +0800 Subject: [PATCH] Fix "[warning] option: attempt to access option with wrong type: downward_check " warning --- src/libslic3r/PrintConfig.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 73d430a436..91beca4c3c 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -9704,12 +9704,6 @@ CLIActionsConfigDef::CLIActionsConfigDef() def->cli = "uptodate"; def->set_default_value(new ConfigOptionBool(false)); - def = this->add("downward_check", coStrings); - def->label = L("downward machines check"); - def->tooltip = L("check whether current machine downward compatible with the machines in the list."); - def->cli_params = "\"machine1.json;machine2.json;...\""; - def->set_default_value(new ConfigOptionStrings()); - def = this->add("load_defaultfila", coBool); def->label = L("Load default filaments"); def->tooltip = L("Load first filament as default for those not loaded.");