mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
Document no longer that pre-heating defaults to 15m
Because that was removed. Contributes to issue CURA-3161.
This commit is contained in:
parent
d30430381f
commit
9354a80504
2 changed files with 2 additions and 4 deletions
|
@ -264,8 +264,7 @@ class PrinterOutputDevice(QObject, OutputDevice):
|
||||||
#
|
#
|
||||||
# \param temperature The temperature to heat the bed to, in degrees
|
# \param temperature The temperature to heat the bed to, in degrees
|
||||||
# Celsius.
|
# Celsius.
|
||||||
# \param duration How long the bed should stay warm, in seconds. Defaults
|
# \param duration How long the bed should stay warm, in seconds.
|
||||||
# to a quarter hour.
|
|
||||||
@pyqtSlot(float, float)
|
@pyqtSlot(float, float)
|
||||||
def preheatBed(self, temperature, duration):
|
def preheatBed(self, temperature, duration):
|
||||||
Logger.log("w", "preheatBed is not implemented by this output device.")
|
Logger.log("w", "preheatBed is not implemented by this output device.")
|
||||||
|
|
|
@ -245,8 +245,7 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
|
||||||
#
|
#
|
||||||
# \param temperature The temperature to heat the bed to, in degrees
|
# \param temperature The temperature to heat the bed to, in degrees
|
||||||
# Celsius.
|
# Celsius.
|
||||||
# \param duration How long the bed should stay warm, in seconds. Defaults
|
# \param duration How long the bed should stay warm, in seconds.
|
||||||
# to a quarter hour.
|
|
||||||
@pyqtSlot(float, float)
|
@pyqtSlot(float, float)
|
||||||
def preheatBed(self, temperature, duration):
|
def preheatBed(self, temperature, duration):
|
||||||
temperature = round(temperature) #The API doesn't allow floating point.
|
temperature = round(temperature) #The API doesn't allow floating point.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue