Initial design update pass

This commit is contained in:
Dean Herbert
2022-08-30 17:33:08 +09:00
parent 0e68620f70
commit 1484ae19f0
4 changed files with 100 additions and 88 deletions

View File

@ -57,7 +57,7 @@ namespace osu.Game.Overlays.Notifications
set
{
progress = value;
Scheduler.AddOnce(updateProgress, progress);
Scheduler.AddOnce(p => progressBar.Progress = p, progress);
}
}
@ -174,7 +174,6 @@ namespace osu.Game.Overlays.Notifications
{
Content.Add(textDrawable = new OsuTextFlowContainer
{
Colour = OsuColour.Gray(128),
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
});