mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 23:16:06 +08:00
Remove print
This was printing all settings that were being sent to the engine. Could've been useful, actually. Maybe I'll re-add it in the form of a log. Contributes to issues CURA-1278 and CURA-1588.
This commit is contained in:
parent
d235b36692
commit
6116f592b3
@ -131,7 +131,6 @@ class StartSliceJob(Job):
|
|||||||
def _sendGlobalSettings(self):
|
def _sendGlobalSettings(self):
|
||||||
message = self._socket.createMessage("cura.proto.SettingList")
|
message = self._socket.createMessage("cura.proto.SettingList")
|
||||||
settings = self._getAllSettingValues() #Get all the settings to send.
|
settings = self._getAllSettingValues() #Get all the settings to send.
|
||||||
print(settings)
|
|
||||||
start_gcode = settings["machine_start_gcode"]
|
start_gcode = settings["machine_start_gcode"]
|
||||||
settings["material_bed_temp_prepend"] = "{material_bed_temperature}" not in start_gcode #Pre-compute material_bed_temp_prepend and material_print_temp_prepend.
|
settings["material_bed_temp_prepend"] = "{material_bed_temperature}" not in start_gcode #Pre-compute material_bed_temp_prepend and material_print_temp_prepend.
|
||||||
settings["material_print_temp_prepend"] = "{material_print_temperature}" not in start_gcode
|
settings["material_print_temp_prepend"] = "{material_print_temperature}" not in start_gcode
|
||||||
|
Loading…
x
Reference in New Issue
Block a user