autoOpen setter

This commit is contained in:
Vadim Lopatin 2017-08-07 15:52:20 +03:00
parent d130848eb2
commit 0cd202d43f
1 changed files with 5 additions and 0 deletions

View File

@ -284,5 +284,10 @@ class IDESettings : SettingsFile {
Setting obj =_setting.objectByPath("common", true);
return obj.getBoolean("autoOpenLastProject", false);
}
@property void autoOpenLastProject(bool value) {
Setting obj =_setting.objectByPath("common", true);
obj.setBoolean("autoOpenLastProject", value);
}
}