mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
Code style
Contributes to CL-1272
This commit is contained in:
parent
99fe8ec7aa
commit
9c3f67a9ed
1 changed files with 2 additions and 2 deletions
|
@ -455,7 +455,7 @@ class UM3OutputDevicePlugin(OutputDevicePlugin):
|
||||||
# Cloud flow is possible, so show the message
|
# Cloud flow is possible, so show the message
|
||||||
if not self._start_cloud_flow_message:
|
if not self._start_cloud_flow_message:
|
||||||
self._createCloudFlowStartMessage()
|
self._createCloudFlowStartMessage()
|
||||||
if not self._start_cloud_flow_message.visible:
|
if self._start_cloud_flow_message and not self._start_cloud_flow_message.visible:
|
||||||
self._start_cloud_flow_message.show()
|
self._start_cloud_flow_message.show()
|
||||||
|
|
||||||
def _onCloudPrintingConfigured(self) -> None:
|
def _onCloudPrintingConfigured(self) -> None:
|
||||||
|
@ -467,7 +467,7 @@ class UM3OutputDevicePlugin(OutputDevicePlugin):
|
||||||
# Cloud flow is complete, so show the message
|
# Cloud flow is complete, so show the message
|
||||||
if not self._cloud_flow_complete_message:
|
if not self._cloud_flow_complete_message:
|
||||||
self._createCloudFlowCompleteMessage()
|
self._createCloudFlowCompleteMessage()
|
||||||
if not self._cloud_flow_complete_message.visible:
|
if self._cloud_flow_complete_message and not self._cloud_flow_complete_message.visible:
|
||||||
self._cloud_flow_complete_message.show()
|
self._cloud_flow_complete_message.show()
|
||||||
|
|
||||||
# Set the machine's cloud flow as complete so we don't ask the user again and again for cloud connected printers
|
# Set the machine's cloud flow as complete so we don't ask the user again and again for cloud connected printers
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue