mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Solve merge conflicts
This commit is contained in:
commit
2ae5334dde
25 changed files with 306 additions and 47 deletions
|
@ -17,6 +17,7 @@ from UM.Logger import Logger
|
|||
from UM.Message import Message
|
||||
from UM.OutputDevice import OutputDeviceError
|
||||
from UM.i18n import i18nCatalog
|
||||
from UM.Qt.Duration import Duration, DurationFormat
|
||||
|
||||
from . import NetworkPrinterOutputDevice
|
||||
|
||||
|
@ -700,3 +701,7 @@ class NetworkClusterPrinterOutputDevice(NetworkPrinterOutputDevice.NetworkPrinte
|
|||
self._reply.abort()
|
||||
self._reply = None
|
||||
Application.getInstance().showPrintMonitor.emit(False)
|
||||
|
||||
@pyqtSlot(int, result=str)
|
||||
def formatDuration(self, seconds):
|
||||
return Duration(seconds).getDisplayString(DurationFormat.Format.Short)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue