Fix sliderbar not working correctly with TransferValueOnCommit = true

This commit is contained in:
smoogipoo
2019-01-08 16:07:54 +09:00
parent 7bb4a06122
commit 8692be9de3
4 changed files with 45 additions and 52 deletions

View File

@ -62,6 +62,6 @@ namespace osu.Game.Graphics.UserInterface
fill.Width = value * UsableWidth;
}
protected override void OnUserChange() => OnSeek?.Invoke(Current);
protected override void OnUserChange(double value) => OnSeek?.Invoke(Current);
}
}