refine code
This commit is contained in:
parent
7a6e6d9b53
commit
7344f494bc
1 changed files with 7 additions and 7 deletions
|
@ -27,15 +27,15 @@ class Extension {
|
||||||
this.labels = []
|
this.labels = []
|
||||||
this.settings = null
|
this.settings = null
|
||||||
this.handlers = []
|
this.handlers = []
|
||||||
|
this.settings_get = (method, key) => this.settings[method](key) || this.settings.get_default_value(key)[method]()
|
||||||
}
|
}
|
||||||
|
|
||||||
update() {
|
update() {
|
||||||
let settings = this.settings
|
let text1 = this.settings_get('get_string', 'text-l1')
|
||||||
let text1 = settings.get_string('text-l1') || settings.get_default_value('text-l1').get_string()
|
let text2 = this.settings_get('get_string', 'text-l2')
|
||||||
let text2 = settings.get_string('text-l2') || settings.get_default_value('text-l2').get_string()
|
let vl2 = this.settings_get('get_double', 'l2-vertical')
|
||||||
let vl2 = settings.get_double('l2-vertical') || settings.get_default_value('l2-vertical').get_double()
|
let hl2 = this.settings_get('get_double', 'l2-horizontal')
|
||||||
let hl2 = settings.get_double('l2-horizontal') || settings.get_default_value('l2-horizontal').get_double()
|
let opacity = this.settings_get('get_double', 'opacity')
|
||||||
let opacity = settings.get_double('opacity') || settings.get_default_value('opacity').get_double()
|
|
||||||
|
|
||||||
this.cleanup()
|
this.cleanup()
|
||||||
for (let monitor of Main.layoutManager.monitors) {
|
for (let monitor of Main.layoutManager.monitors) {
|
||||||
|
@ -74,7 +74,7 @@ class Extension {
|
||||||
owner: Main.layoutManager,
|
owner: Main.layoutManager,
|
||||||
id: Main.layoutManager.connect('startup-complete', () => this.update())
|
id: Main.layoutManager.connect('startup-complete', () => this.update())
|
||||||
})
|
})
|
||||||
this.update()
|
if (!Main.layoutManager._startingUp) this.update()
|
||||||
}
|
}
|
||||||
|
|
||||||
disable() {
|
disable() {
|
||||||
|
|
Loading…
Reference in a new issue