mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Functionality properties (canPause, canPreHeatBed, etc) are now in the Controller.
It's actually up to the controller to say something about this, so this location makes more sense CL-541
This commit is contained in:
parent
0fe91db636
commit
f987e6d977
3 changed files with 20 additions and 11 deletions
|
@ -9,7 +9,10 @@ if MYPY:
|
|||
|
||||
class PrinterOutputController:
|
||||
def __init__(self):
|
||||
pass
|
||||
self.can_pause = True
|
||||
self.can_abort = True
|
||||
self.can_pre_heat_bed = True
|
||||
self.can_control_manually = True
|
||||
|
||||
def setTargetHotendTemperature(self, printer: "PrinterOutputModel", extruder: "ExtruderOuputModel", temperature: int):
|
||||
# TODO: implement
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue