Rename 'connect_group_name' to 'group_name'. [CURA-6153]

This commit is contained in:
Remco Burema 2019-01-31 20:21:42 +01:00
parent 6cd3a5fe3d
commit 954fdb20ad
7 changed files with 16 additions and 16 deletions

View file

@ -54,7 +54,7 @@ class GlobalStacksModel(ListModel):
continue
# TODO: Remove reference to connect group name.
items.append({"name": container_stack.getMetaDataEntry("connect_group_name", container_stack.getName()),
items.append({"name": container_stack.getMetaDataEntry("group_name", container_stack.getName()),
"id": container_stack.getId(),
"hasRemoteConnection": has_remote_connection,
"metadata": container_stack.getMetaData().copy()})