mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
fix: storage changes calling bgdurations incorrectly
This commit is contained in:
@@ -25,7 +25,7 @@ export class StorageChangeHandler {
|
|||||||
settingsState.register('shortcuts', this.handleShortcutsChange.bind(this));
|
settingsState.register('shortcuts', this.handleShortcutsChange.bind(this));
|
||||||
settingsState.register('customshortcuts', this.handleCustomShortcutsChange.bind(this));
|
settingsState.register('customshortcuts', this.handleCustomShortcutsChange.bind(this));
|
||||||
settingsState.register('notificationcollector', this.handleNotificationCollectorChange.bind(this));
|
settingsState.register('notificationcollector', this.handleNotificationCollectorChange.bind(this));
|
||||||
settingsState.register('bksliderinput', this.handleBksliderInputChange.bind(this));
|
settingsState.register('bksliderinput', updateBgDurations.bind(this));
|
||||||
settingsState.register('animatedbk', this.handleAnimatedBkChange.bind(this));
|
settingsState.register('animatedbk', this.handleAnimatedBkChange.bind(this));
|
||||||
settingsState.register('transparencyEffects', this.handleTransparencyEffectsChange.bind(this));
|
settingsState.register('transparencyEffects', this.handleTransparencyEffectsChange.bind(this));
|
||||||
}
|
}
|
||||||
@@ -86,10 +86,6 @@ export class StorageChangeHandler {
|
|||||||
RemoveShortcutDiv(removedShortcuts);
|
RemoveShortcutDiv(removedShortcuts);
|
||||||
}
|
}
|
||||||
|
|
||||||
private handleBksliderInputChange(newValue: string) {
|
|
||||||
updateBgDurations(newValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
private handleAnimatedBkChange(newValue: boolean) {
|
private handleAnimatedBkChange(newValue: boolean) {
|
||||||
if (newValue) {
|
if (newValue) {
|
||||||
CreateBackground();
|
CreateBackground();
|
||||||
|
|||||||
Reference in New Issue
Block a user