mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Adjust sprite texts in-line with framework changes
This commit is contained in:
@ -89,8 +89,7 @@ namespace osu.Game.Overlays.Chat.Selection
|
||||
name = new OsuSpriteText
|
||||
{
|
||||
Text = channel.ToString(),
|
||||
TextSize = text_size,
|
||||
Font = @"Exo2.0-Bold",
|
||||
Font = OsuFont.GetFont(size: text_size, weight: FontWeight.Bold),
|
||||
Shadow = false,
|
||||
},
|
||||
},
|
||||
@ -106,8 +105,7 @@ namespace osu.Game.Overlays.Chat.Selection
|
||||
topic = new OsuSpriteText
|
||||
{
|
||||
Text = channel.Topic,
|
||||
TextSize = text_size,
|
||||
Font = @"Exo2.0-SemiBold",
|
||||
Font = OsuFont.GetFont(size: text_size, weight: FontWeight.SemiBold),
|
||||
Shadow = false,
|
||||
},
|
||||
},
|
||||
@ -130,8 +128,7 @@ namespace osu.Game.Overlays.Chat.Selection
|
||||
new OsuSpriteText
|
||||
{
|
||||
Text = @"0",
|
||||
TextSize = text_size,
|
||||
Font = @"Exo2.0-SemiBold",
|
||||
Font = OsuFont.GetFont(size: text_size, weight: FontWeight.SemiBold),
|
||||
Shadow = false,
|
||||
},
|
||||
},
|
||||
|
@ -7,6 +7,7 @@ using System.Linq;
|
||||
using osuTK;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Game.Graphics;
|
||||
using osu.Game.Graphics.Sprites;
|
||||
using osu.Game.Online.Chat;
|
||||
|
||||
@ -48,8 +49,7 @@ namespace osu.Game.Overlays.Chat.Selection
|
||||
{
|
||||
header = new OsuSpriteText
|
||||
{
|
||||
TextSize = 15,
|
||||
Font = @"Exo2.0-Bold",
|
||||
Font = OsuFont.GetFont(size: 15, weight: FontWeight.Bold),
|
||||
},
|
||||
ChannelFlow = new FillFlowContainer<ChannelListItem>
|
||||
{
|
||||
|
@ -110,7 +110,7 @@ namespace osu.Game.Overlays.Chat.Selection
|
||||
new OsuSpriteText
|
||||
{
|
||||
Text = @"Chat Channels",
|
||||
TextSize = 20,
|
||||
Font = OsuFont.GetFont(size: 20),
|
||||
Shadow = false,
|
||||
},
|
||||
search = new HeaderSearchTextBox
|
||||
|
Reference in New Issue
Block a user