1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 03:02:54 +08:00

Remove unnecessary setter on bindable

This commit is contained in:
Dean Herbert 2024-06-26 21:47:33 +09:00
parent ac235cb506
commit fd91210c1c
No known key found for this signature in database

View File

@ -123,7 +123,7 @@ namespace osu.Game.Screens.OnlinePlay.DailyChallenge
{
public Action<NavigationDot>? Clicked { get; set; }
public BindableBool Active { get; set; } = new BindableBool();
public BindableBool Active { get; } = new BindableBool();
private double progress;