mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 06:29:02 +08:00
Temporarily revert "Renaming profiles now also renames them on disk"
This reverts commit af238d5a7656b243550c426405e2b356de877365.
This commit is contained in:
parent
2287c2daa6
commit
d8e8b0740a
@ -5,17 +5,12 @@ from PyQt5.QtCore import QObject, pyqtSlot, pyqtProperty, pyqtSignal
|
||||
from UM.Application import Application
|
||||
from UM.Preferences import Preferences
|
||||
from UM.Logger import Logger
|
||||
from UM.Resources import Resources
|
||||
|
||||
import os
|
||||
import urllib
|
||||
|
||||
import UM.Settings
|
||||
from UM.Settings.Validator import ValidatorState
|
||||
from UM.Settings.InstanceContainer import InstanceContainer
|
||||
from UM.Settings.ContainerStack import ContainerStack
|
||||
from . import ExtruderManager
|
||||
import cura.CuraApplication
|
||||
from UM.i18n import i18nCatalog
|
||||
catalog = i18nCatalog("cura")
|
||||
|
||||
@ -308,19 +303,8 @@ class MachineManagerModel(QObject):
|
||||
def renameQualityContainer(self, container_id, new_name):
|
||||
containers = UM.Settings.ContainerRegistry.getInstance().findInstanceContainers(id = container_id, type = "quality")
|
||||
if containers:
|
||||
|
||||
# Remove old container form drive.
|
||||
old_id = containers[0].getId()
|
||||
file_name = urllib.parse.quote_plus(old_id) + ".inst.cfg"
|
||||
path = Resources.getStoragePath(cura.CuraApplication.CuraApplication.ResourceTypes.QualityInstanceContainer,
|
||||
file_name)
|
||||
os.remove(path)
|
||||
|
||||
## Check if the new name is allowed.
|
||||
new_name = self._createUniqueName("quality", containers[0].getName(), new_name, catalog.i18nc("@label", "Custom profile"))
|
||||
|
||||
containers[0].setName(new_name)
|
||||
containers[0]._id = new_name # Todo: Fix proper id change function for this.
|
||||
self.activeQualityChanged.emit()
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user