mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Only change project name when saving to project files.
CURA-8358
This commit is contained in:
parent
c2c53d51c1
commit
b97920e5b1
2 changed files with 10 additions and 8 deletions
|
@ -604,7 +604,7 @@ class DigitalFactoryController(QObject):
|
|||
|
||||
def _saveFileToSelectedProjectHelper(self, filename: str, formats: List[str]) -> None:
|
||||
# Indicate we have started sending a job (and propagate any user file name changes back to the open project)
|
||||
self.uploadStarted.emit(filename)
|
||||
self.uploadStarted.emit(filename if "3mf" in formats else None)
|
||||
|
||||
library_project_id = self._project_model.items[self._selected_project_idx]["libraryProjectId"]
|
||||
library_project_name = self._project_model.items[self._selected_project_idx]["displayName"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue