Browse Source

Revert "Fix opening files on windows"

This reverts commit d6a73a5976067078c7e7e63e2d6a12b89573d566.
c.lamboo 1 year ago
parent
commit
568fc4ca76
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cura/CuraApplication.py

+ 1 - 1
cura/CuraApplication.py

@@ -332,7 +332,7 @@ class CuraApplication(QtApplication):
         for filename in self._cli_args.file:
             url = QUrl(filename)
             if url.scheme() in self._supported_url_schemes:
-                self._open_url_queue.append(filename)
+                self._open_url_queue.append(url)
             else:
                 self._files_to_open.append(os.path.abspath(filename))