mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Update with framework bindable changes
This commit is contained in:
@ -60,9 +60,9 @@ namespace osu.Game.Configuration
|
||||
databasedSettings.Add(setting);
|
||||
}
|
||||
|
||||
bindable.ValueChanged += v =>
|
||||
bindable.ValueChanged += e =>
|
||||
{
|
||||
setting.Value = v;
|
||||
setting.Value = e.NewValue;
|
||||
settings.Update(setting);
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user