Fix watchable settings

This commit is contained in:
Kay Thomas
2022-05-26 19:59:01 -07:00
parent 72a7f99850
commit 9400959852

View File

@@ -101,7 +101,7 @@ export default {
return samples
},
changeableSettings: function () {
return [
const settings = [
this.isTimerEnabled,
this.hours,
this.minutes,
@@ -116,9 +116,16 @@ export default {
this.lfoFilterCutoffRange,
this.isTremoloEnabled,
this.tremoloDepth,
this.tremoloFrequency,
this.isTimerEnabled,
this.loadedSamples
]
this.loadedSamples.forEach(s => {
settings.push(s.volume)
})
return settings
}
},
created () {