Bugfixes: Fix CLI definition for printer notes and remove dupe qw()

This commit is contained in:
Joseph Lenox 2017-06-03 19:58:18 -05:00
parent 25202f9a47
commit 375b334ad8
2 changed files with 2 additions and 3 deletions

View File

@ -1198,7 +1198,6 @@ sub options {
use_firmware_retraction pressure_advance vibration_limit
use_volumetric_e
start_gcode end_gcode before_layer_gcode layer_gcode toolchange_gcode between_objects_gcode
printer_notes
nozzle_diameter extruder_offset
retract_length retract_lift retract_speed retract_restart_extra retract_before_travel retract_layer_change wipe
retract_length_toolchange retract_restart_extra_toolchange retract_lift_above retract_lift_below

View File

@ -926,8 +926,8 @@ PrintConfigDef::PrintConfigDef()
def = this->add("printer_notes", coString);
def->label = "Printer notes";
def->tooltip = "You can put your notes regarding the printer here.";
def->cli = "printer-notes=s@";
def->tooltip = "You can put your notes regarding the printer here. This text will be added to the G-code header comments.";
def->cli = "printer-notes=s";
def->multiline = true;
def->full_width = true;
def->height = 130;