Fix many instances of non-osu-prefixed text classes being used

Results in incorrect default formatting.
This commit is contained in:
Dean Herbert
2017-12-26 00:44:35 +09:00
parent 45e4c09cb8
commit 3c1654e5e4
12 changed files with 32 additions and 20 deletions

View File

@ -7,6 +7,7 @@ using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using OpenTK;
using OpenTK.Graphics;
@ -114,7 +115,7 @@ namespace osu.Game.Overlays.Notifications
RelativeSizeAxes = Axes.Both,
});
Content.Add(textDrawable = new TextFlowContainer(t =>
Content.Add(textDrawable = new OsuTextFlowContainer(t =>
{
t.TextSize = 16;
})