Fix spacing

CURA-7436
This commit is contained in:
Kostas Karmas 2020-05-20 15:10:04 +02:00
parent 4e930b4d52
commit f677be14c2

View file

@ -21,7 +21,7 @@ class GlobalStacksModel(ListModel):
DiscoverySourceRole = Qt.UserRole + 6 # For separating local and remote printers in the machine management page DiscoverySourceRole = Qt.UserRole + 6 # For separating local and remote printers in the machine management page
RemovalWarningRole = Qt.UserRole + 7 RemovalWarningRole = Qt.UserRole + 7
def __init__(self, parent=None) -> None: def __init__(self, parent = None) -> None:
super().__init__(parent) super().__init__(parent)
self._catalog = i18nCatalog("cura") self._catalog = i18nCatalog("cura")
@ -55,7 +55,7 @@ class GlobalStacksModel(ListModel):
def _update(self) -> None: def _update(self) -> None:
items = [] items = []
container_stacks = CuraContainerRegistry.getInstance().findContainerStacks(type="machine") container_stacks = CuraContainerRegistry.getInstance().findContainerStacks(type = "machine")
for container_stack in container_stacks: for container_stack in container_stacks:
has_remote_connection = False has_remote_connection = False