mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-12 17:27:51 -06:00
Fix tests
This commit is contained in:
parent
f478653c37
commit
77c30c891f
6 changed files with 23 additions and 21 deletions
|
@ -101,7 +101,7 @@ class CloudOutputDeviceManager:
|
|||
if not active_machine:
|
||||
return
|
||||
|
||||
# Remove all output devices that we have registered.
|
||||
# Remove all output devices that we have registered. TODO: Why??
|
||||
for stored_cluster_id in self._remote_clusters:
|
||||
self._output_device_manager.removeOutputDevice(stored_cluster_id)
|
||||
|
||||
|
|
|
@ -19,6 +19,11 @@ class CloudProgressMessage(Message):
|
|||
use_inactivity_timer = False
|
||||
)
|
||||
|
||||
## Returns a boolean indicating whether this message is currently visible
|
||||
@property
|
||||
def visible(self) -> bool:
|
||||
return self._visible
|
||||
|
||||
## Shows the progress message.
|
||||
def show(self):
|
||||
self.setProgress(0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue