From 98e0b814456e9dc005a4e59c9b9c4f70e903abcb Mon Sep 17 00:00:00 2001 From: Can Gelis Date: Sat, 12 Aug 2017 14:50:32 +0300 Subject: [PATCH] make --has-heatbed to compatible with other cli arguments --- xs/src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp index 84c73e83e..d87c77883 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -45,7 +45,7 @@ PrintConfigDef::PrintConfigDef() def = this->add("has_heatbed", coBool); def->label = "Has heated bed"; def->tooltip = "Unselecting this will suppress automatic generation of bed heating gcode."; - def->cli = "has_heatbed!"; + def->cli = "has-heatbed!"; def->default_value = new ConfigOptionBool(true); def = this->add("bed_temperature", coInt);