add configurable: true to browserwindow.loadSettingsJSON

This commit is contained in:
Philip Weiss
2018-02-08 10:33:47 -08:00
parent 669b22ce1e
commit ef50a52405

View File

@@ -57,8 +57,9 @@ class AtomWindow extends EventEmitter {
Object.defineProperty(this.browserWindow, 'loadSettingsJSON', {
get: () => JSON.stringify(Object.assign({
userSettings: this.atomApplication.configFile.get()
}, this.loadSettings))
userSettings: this.atomApplication.configFile.get(),
}, this.loadSettings)),
configurable: true
})
this.handleEvents()