1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-25 22:12:57 +08:00

Notes aren't adjusted if setting is off

This commit is contained in:
Aurelian 2024-06-09 18:04:27 +02:00
parent 33d0d4c8f2
commit 101887d315

View File

@ -45,7 +45,7 @@ namespace osu.Game.Screens.Edit.Timing
bpmTextEntry.Bindable.BindValueChanged(val =>
{
if (ControlPoint.Value == null)
if (!Beatmap.AdjustNotesOnOffsetBPMChange.Value || ControlPoint.Value == null)
return;
ChangeHandler?.BeginChange();