Skip to content

Commit 9df59e6

Browse files
committed
Bugfix: Recording filters was broken by the recent song volume recording fix.
1 parent d180b96 commit 9df59e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/PatternEditor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ export class PatternEditor {
827827
if (toApply) applyValues.push(this._doc.prefs.volume - modulator.convertRealFactor);
828828
}
829829
// Also for song volume, when holding the slider at a single value.
830-
else if (this._doc.continuingModRecordingChange != null && this._doc.continuingModRecordingChange.storedSlider == null) {
830+
else if (this._doc.continuingModRecordingChange != null && this._doc.continuingModRecordingChange.storedChange == null && this._doc.continuingModRecordingChange.storedSlider == null) {
831831
var modulator = Config.modulators.dictionary["song volume"];
832832
applyToMods.push(modulator.index);
833833
if (toApply) applyValues.push(this._doc.continuingModRecordingChange.storedValues![0]);

0 commit comments

Comments
 (0)