1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 10:33:07 +08:00

Make field readonly

This commit is contained in:
Andrei Zavatski 2019-12-28 05:11:28 +03:00
parent ac2280c4ef
commit 7af622426a

View File

@ -15,7 +15,7 @@ namespace osu.Game.Graphics.UserInterface
public class BreadcrumbControl<T> : OsuTabControl<T>
{
private const float padding = 10;
private float itemChevronSize;
private readonly float itemChevronSize;
protected override TabItem<T> CreateTabItem(T value) => new BreadcrumbTabItem(value, itemChevronSize)
{