mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-19 04:37:51 -06:00
Added function to duplicate container
CURA-1427
This commit is contained in:
parent
01999f7ddd
commit
d1d60e27cc
1 changed files with 19 additions and 1 deletions
|
@ -277,8 +277,9 @@ class MachineManagerModel(QObject):
|
||||||
return True
|
return True
|
||||||
return containers[0].getMetaDataEntry("read_only", False) == "True"
|
return containers[0].getMetaDataEntry("read_only", False) == "True"
|
||||||
|
|
||||||
@pyqtSlot()
|
@pyqtSlot(result = str)
|
||||||
def convertUserContainerToQuality(self):
|
def convertUserContainerToQuality(self):
|
||||||
|
print("convertUserContainerToQuality")
|
||||||
if not self._global_container_stack:
|
if not self._global_container_stack:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
@ -297,6 +298,23 @@ class MachineManagerModel(QObject):
|
||||||
UM.Settings.ContainerRegistry.getInstance().addContainer(new_quality_container)
|
UM.Settings.ContainerRegistry.getInstance().addContainer(new_quality_container)
|
||||||
self.clearUserSettings() # As all users settings are noq a quality, remove them.
|
self.clearUserSettings() # As all users settings are noq a quality, remove them.
|
||||||
self.setActiveQuality(name)
|
self.setActiveQuality(name)
|
||||||
|
return name
|
||||||
|
|
||||||
|
@pyqtSlot(str, result=str)
|
||||||
|
def duplicateContainer(self, container_id):
|
||||||
|
print("convertUserContainerToQuality")
|
||||||
|
if not self._global_container_stack:
|
||||||
|
return
|
||||||
|
container_to_duplicate = self._global_container_stack.findContainer({"id": container_id})
|
||||||
|
if container_to_duplicate:
|
||||||
|
new_name = self._createUniqueStackName(container_to_duplicate.getName(), "")
|
||||||
|
new_container = InstanceContainer("")
|
||||||
|
new_container.setName(new_name)
|
||||||
|
new_container._id = new_name
|
||||||
|
UM.Settings.ContainerRegistry.getInstance().addContainer(new_container)
|
||||||
|
return new_name
|
||||||
|
|
||||||
|
return ""
|
||||||
|
|
||||||
@pyqtSlot()
|
@pyqtSlot()
|
||||||
def updateUserContainerToQuality(self):
|
def updateUserContainerToQuality(self):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue