Merge branch 'dev' into patcher-rewrite

This commit is contained in:
Nuckyz 2025-01-26 20:36:32 -03:00
commit f4c8efe4de
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -167,6 +167,8 @@ export class SettingsStore<T extends object> {
this.globalListeners.forEach(cb => cb(root, settingPathStr));
this.pathListeners.get(settingPathStr)?.forEach(cb => cb(settingValue));
} else {
this.globalListeners.forEach(cb => cb(root, pathStr));
}
this.pathListeners.get(pathStr)?.forEach(cb => cb(value));