From 687b634fb330594466779c3293aaa9905e6d0227 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 31 Jan 2017 18:40:04 +0900 Subject: [PATCH] Adjust button font size. --- osu.Game/Graphics/UserInterface/OsuButton.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osu.Game/Graphics/UserInterface/OsuButton.cs b/osu.Game/Graphics/UserInterface/OsuButton.cs index 7314d0006e..a199153e37 100644 --- a/osu.Game/Graphics/UserInterface/OsuButton.cs +++ b/osu.Game/Graphics/UserInterface/OsuButton.cs @@ -7,6 +7,7 @@ using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.UserInterface; using osu.Game.Graphics.Backgrounds; +using osu.Game.Overlays; namespace osu.Game.Graphics.UserInterface { @@ -15,6 +16,7 @@ namespace osu.Game.Graphics.UserInterface public OsuButton() { Height = 40; + SpriteText.TextSize = OptionsOverlay.FONT_SIZE; } [BackgroundDependencyLoader]