From 0b3530142f6e07f96a004ffbdcb8ad92bdf91d2e Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Mon, 14 Aug 2017 10:11:53 +0300 Subject: [PATCH] fix commandline workspace param processing after dlangui arg list change - item 0 is now executable filename --- dub.json | 2 +- src/dlangide.d | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dub.json b/dub.json index 3bd1b2a..d01730f 100644 --- a/dub.json +++ b/dub.json @@ -12,7 +12,7 @@ "stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"], "dependencies": { - "dlangui": "==0.9.88", + "dlangui": "==0.9.89", "dcd": "~>0.9.0" }, diff --git a/src/dlangide.d b/src/dlangide.d index 8ce8f87..cf4a506 100644 --- a/src/dlangide.d +++ b/src/dlangide.d @@ -88,10 +88,10 @@ extern (C) int UIAppMain(string[] args) { IDEFrame frame = new IDEFrame(window); // Open project, if it specified in command line - if (args.length > 0) + if (args.length > 1) { Action a = ACTION_FILE_OPEN_WORKSPACE.clone(); - a.stringParam = args[0].toAbsolutePath; + a.stringParam = args[1].toAbsolutePath; frame.handleAction(a); // Mark that workspace opened to prevent auto open frame.isOpenedWorkspace(true);