1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-29 06:09:59 +08:00

refactor: make FillFlowContainer read-only

This commit is contained in:
tsrk
2023-02-16 23:17:47 +00:00
Unverified
parent c61fac578c
commit e3ca751027
+1 -1
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;