mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-02 16:28:51 +02:00
Corrected project argument name
Argument was `project` but was used as `pipeline` which prevented the ui from starting.
This commit is contained in:
parent
1cb9935617
commit
7f1943c0de
1 changed files with 2 additions and 2 deletions
|
@ -100,8 +100,8 @@ class MeshroomApp(QApplication):
|
|||
parser.add_argument('--project', metavar='MESHROOM_FILE', type=str, required=False,
|
||||
help='Meshroom project file (e.g. myProject.mg).')
|
||||
args = parser.parse_args(args[1:])
|
||||
if args.pipeline:
|
||||
r.loadUrl(QUrl.fromLocalFile(args.pipeline))
|
||||
if args.project:
|
||||
r.loadUrl(QUrl.fromLocalFile(args.project))
|
||||
|
||||
self.engine.load(os.path.normpath(url))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue