Commit 279b71cb authored by Guillaume Seguin's avatar Guillaume Seguin

Also check for M190 for bed temps

parent 2c6bfc23
......@@ -411,7 +411,7 @@ class PronterWindow(MainWindow, pronsole.pronsole):
temp = gline_s
if self.display_gauges: wx.CallAfter(self.hottgauge.SetTarget, temp)
if self.display_graph: wx.CallAfter(self.graph.SetExtruder0TargetTemperature, temp)
elif gline.command == "M140":
elif gline.command in ["M140", "M190"]:
gline.parse_coordinates(gline, split_raw, imperial = False, force = True)
gline_s = gcoder.S(gline)
if gline_s is not None:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment