mirror of https://github.com/buggins/dlangide.git
fix commandline workspace param processing after dlangui arg list change - item 0 is now executable filename
This commit is contained in:
parent
814dcd3ede
commit
0b3530142f
2
dub.json
2
dub.json
|
@ -12,7 +12,7 @@
|
||||||
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
|
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dlangui": "==0.9.88",
|
"dlangui": "==0.9.89",
|
||||||
"dcd": "~>0.9.0"
|
"dcd": "~>0.9.0"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -88,10 +88,10 @@ extern (C) int UIAppMain(string[] args) {
|
||||||
IDEFrame frame = new IDEFrame(window);
|
IDEFrame frame = new IDEFrame(window);
|
||||||
|
|
||||||
// Open project, if it specified in command line
|
// Open project, if it specified in command line
|
||||||
if (args.length > 0)
|
if (args.length > 1)
|
||||||
{
|
{
|
||||||
Action a = ACTION_FILE_OPEN_WORKSPACE.clone();
|
Action a = ACTION_FILE_OPEN_WORKSPACE.clone();
|
||||||
a.stringParam = args[0].toAbsolutePath;
|
a.stringParam = args[1].toAbsolutePath;
|
||||||
frame.handleAction(a);
|
frame.handleAction(a);
|
||||||
// Mark that workspace opened to prevent auto open
|
// Mark that workspace opened to prevent auto open
|
||||||
frame.isOpenedWorkspace(true);
|
frame.isOpenedWorkspace(true);
|
||||||
|
|
Loading…
Reference in New Issue