mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-11 14:19:38 +00:00
Add download location settings
This commit is contained in:
@@ -57,8 +57,15 @@ export class SettingsService {
|
||||
get libraryDirectory() {
|
||||
return this.settings.libraryPath
|
||||
}
|
||||
set libraryDirectory(newValue: string | undefined) {
|
||||
this.settings.libraryPath = newValue
|
||||
set libraryDirectory(value: string | undefined) {
|
||||
this.settings.libraryPath = value
|
||||
this.saveSettings()
|
||||
}
|
||||
get chartFolderName() {
|
||||
return this.settings.chartFolderName
|
||||
}
|
||||
set chartFolderName(value: string) {
|
||||
this.settings.chartFolderName = value
|
||||
this.saveSettings()
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user