Add missing toolbar tooltips for right-hand icons

This commit is contained in:
Dean Herbert 2020-08-05 19:06:58 +09:00
parent 93f8dddb20
commit bf1bb32674
7 changed files with 14 additions and 0 deletions

View File

@ -11,6 +11,8 @@ public class ToolbarBeatmapListingButton : ToolbarOverlayToggleButton
public ToolbarBeatmapListingButton()
{
SetIcon(OsuIcon.ChevronDownCircle);
TooltipMain = "Beatmap Listing";
TooltipSub = "Browse for new beatmaps";
}
[BackgroundDependencyLoader(true)]

View File

@ -11,6 +11,8 @@ public class ToolbarChangelogButton : ToolbarOverlayToggleButton
public ToolbarChangelogButton()
{
SetIcon(FontAwesome.Solid.Bullhorn);
TooltipMain = "Changelog";
TooltipSub = "Track recent dev updates in the osu! ecosystem";
}
[BackgroundDependencyLoader(true)]

View File

@ -11,6 +11,8 @@ public class ToolbarChatButton : ToolbarOverlayToggleButton
public ToolbarChatButton()
{
SetIcon(FontAwesome.Solid.Comments);
TooltipMain = "Chat";
TooltipSub = "Join the real-time discussion";
}
[BackgroundDependencyLoader(true)]

View File

@ -11,6 +11,8 @@ public class ToolbarMusicButton : ToolbarOverlayToggleButton
public ToolbarMusicButton()
{
Icon = FontAwesome.Solid.Music;
TooltipMain = "Now playing";
TooltipSub = "Manage the currently playing track";
}
[BackgroundDependencyLoader(true)]

View File

@ -11,6 +11,8 @@ public class ToolbarNewsButton : ToolbarOverlayToggleButton
public ToolbarNewsButton()
{
Icon = FontAwesome.Solid.Newspaper;
TooltipMain = "News";
TooltipSub = "Get up-to-date on community happenings";
}
[BackgroundDependencyLoader(true)]

View File

@ -11,6 +11,8 @@ public class ToolbarRankingsButton : ToolbarOverlayToggleButton
public ToolbarRankingsButton()
{
SetIcon(FontAwesome.Regular.ChartBar);
TooltipMain = "Ranking";
TooltipSub = "Find out who's the best right now";
}
[BackgroundDependencyLoader(true)]

View File

@ -11,6 +11,8 @@ public class ToolbarSocialButton : ToolbarOverlayToggleButton
public ToolbarSocialButton()
{
Icon = FontAwesome.Solid.Users;
TooltipMain = "Friends";
TooltipSub = "Interact with those close to you";
}
[BackgroundDependencyLoader(true)]