1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 14:02:55 +08:00

refactor: make FillFlowContainer read-only

This commit is contained in:
tsrk 2023-02-16 23:17:47 +00:00
parent c61fac578c
commit e3ca751027
No known key found for this signature in database
GPG Key ID: EBD46BB3049B56D6

View File

@ -17,7 +17,7 @@ namespace osu.Game.Screens.Play
{
protected readonly Bindable<bool> ConfigVisibility = new Bindable<bool>();
protected FillFlowContainer<KeyCounter> KeyFlow = new FillFlowContainer<KeyCounter>();
protected readonly FillFlowContainer<KeyCounter> KeyFlow = new FillFlowContainer<KeyCounter>();
protected override Container<KeyCounter> Content => KeyFlow;