mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-09 04:57:06 +03:00
fix plugin loudness value being memorized upon tab change
This commit is contained in:
@@ -22,8 +22,8 @@
|
||||
});
|
||||
}
|
||||
|
||||
var ldValue = 0;
|
||||
this.lastLd = this.lastLd || 0;
|
||||
var ldValue;
|
||||
this.lastLd = this.lastLd;
|
||||
|
||||
ldValue = Ext.get('pref_loudness').dom.value || 0;
|
||||
|
||||
@@ -59,8 +59,8 @@
|
||||
});
|
||||
}
|
||||
|
||||
var ldValue = 0;
|
||||
this.lastLd = this.lastLd || 0;
|
||||
var ldValue;
|
||||
this.lastLd = this.lastLd;
|
||||
|
||||
ldValue = $('pref_loudness').value || 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user