mirror of https://github.com/buggins/dlangide.git
autoOpen setter
This commit is contained in:
parent
d130848eb2
commit
0cd202d43f
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue