Remove osd prefix and prefer upper-case OSD

This commit is contained in:
Dean Herbert
2019-07-11 15:09:06 +09:00
parent df75f9d312
commit 3bc789fca8
4 changed files with 11 additions and 10 deletions

View File

@ -97,16 +97,16 @@ namespace osu.Game.Overlays
}
/// <summary>
/// Displays the given <see cref="OsdToast"/> as parameter on the OSD
/// Displays the given <see cref="Toast"/> as parameter on the OSD
/// </summary>
/// <param name="toast"></param>
public void Display(OsdToast toast)
public void Display(Toast toast)
{
box.Child = toast;
DisplayTemporarily(box);
}
private void displayTrackedSettingChange(SettingDescription description) => Schedule(() => Display(new OsdTrackedSettingToast(description)));
private void displayTrackedSettingChange(SettingDescription description) => Schedule(() => Display(new TrackedSettingToast(description)));
private TransformSequence<Drawable> fadeIn;
private ScheduledDelegate fadeOut;