Explicitly set exo typeface in a few places

This commit is contained in:
smoogipoo
2019-02-21 19:26:02 +09:00
parent d99eaa3fce
commit 8853f7ad76
6 changed files with 7 additions and 7 deletions

View File

@ -173,7 +173,7 @@ namespace osu.Game.Graphics.UserInterface
new HoverClickSounds()
};
Active.BindValueChanged(val => Text.Font = Text.Font.With(weight: val ? FontWeight.Bold : FontWeight.Medium), true);
Active.BindValueChanged(val => Text.Font = Text.Font.With(Typeface.Exo, weight: val ? FontWeight.Bold : FontWeight.Medium), true);
}
protected override void OnActivated() => fadeActive();