1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 23:47:21 +08:00

Remove remaining hexacons usages

This commit is contained in:
Bartłomiej Dach 2023-12-27 15:55:19 +01:00
parent 288ac930e4
commit 53766285ce
No known key found for this signature in database
6 changed files with 6 additions and 6 deletions

View File

@ -154,7 +154,7 @@ namespace osu.Game.Tests.Visual.UserInterface
public TestTitle() public TestTitle()
{ {
Title = "title"; Title = "title";
Icon = HexaconsIcons.Devtools; Icon = OsuIcon.ChangelogB;
} }
} }
} }

View File

@ -60,7 +60,7 @@ namespace osu.Game.Overlays.BeatmapSet
public BeatmapHeaderTitle() public BeatmapHeaderTitle()
{ {
Title = PageTitleStrings.MainBeatmapsetsControllerShow; Title = PageTitleStrings.MainBeatmapsetsControllerShow;
Icon = HexaconsIcons.Beatmap; Icon = OsuIcon.Beatmap;
} }
} }
} }

View File

@ -46,7 +46,7 @@ namespace osu.Game.Overlays.Chat
{ {
Anchor = Anchor.Centre, Anchor = Anchor.Centre,
Origin = Anchor.Centre, Origin = Anchor.Centre,
Icon = HexaconsIcons.Messaging, Icon = OsuIcon.Chat,
Size = new Vector2(24), Size = new Vector2(24),
}, },
// Placeholder text // Placeholder text

View File

@ -87,7 +87,7 @@ namespace osu.Game.Overlays.Profile
public ProfileHeaderTitle() public ProfileHeaderTitle()
{ {
Title = PageTitleStrings.MainUsersControllerDefault; Title = PageTitleStrings.MainUsersControllerDefault;
Icon = HexaconsIcons.Profile; Icon = OsuIcon.Player;
} }
} }
} }

View File

@ -51,7 +51,7 @@ namespace osu.Game.Screens.Edit.Components.Menus
Size = new Vector2(26), Size = new Vector2(26),
Anchor = Anchor.CentreLeft, Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft, Origin = Anchor.CentreLeft,
Icon = HexaconsIcons.Editor, Icon = OsuIcon.EditCircle,
}, },
text = new TextFlowContainer text = new TextFlowContainer
{ {

View File

@ -80,7 +80,7 @@ namespace osu.Game.Screens.Edit.Setup
{ {
Title = EditorSetupStrings.BeatmapSetup.ToLower(); Title = EditorSetupStrings.BeatmapSetup.ToLower();
Description = EditorSetupStrings.BeatmapSetupDescription; Description = EditorSetupStrings.BeatmapSetupDescription;
Icon = HexaconsIcons.Social; Icon = OsuIcon.Beatmap;
} }
} }