Merge pull request #1880 from tokejepsen/hotfix/#1877-TVPaint--Workfiles-save-as

Normalize path returned from Workfiles.
This commit is contained in:
Milan Kolar 2021-07-29 12:14:03 +02:00 committed by GitHub
commit 5da7ebef1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -693,7 +693,7 @@ class FilesWidget(QtWidgets.QWidget):
)
return
file_path = os.path.join(self.root, work_file)
file_path = os.path.join(os.path.normpath(self.root), work_file)
pipeline.emit("before.workfile.save", file_path)