fix crash on startup

This commit is contained in:
Vadim Lopatin 2017-08-07 15:47:51 +03:00
parent 5771101f59
commit d130848eb2
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
"dependencies": {
"dlangui": "==0.9.84",
"dlangui": "==0.9.85",
"dcd": "~>0.9.0"
},

View File

@ -281,8 +281,8 @@ class IDESettings : SettingsFile {
}
@property bool autoOpenLastProject() {
Setting obj =_setting.objectByPath("common/autoOpenLastProject");
return _setting.objectByPath("common/autoOpenLastProject").boolean;
Setting obj =_setting.objectByPath("common", true);
return obj.getBoolean("autoOpenLastProject", false);
}
}