From a9658ec66fbcc62e1b79214ffdda0a84ec3e44c0 Mon Sep 17 00:00:00 2001 From: Jorolf Date: Thu, 25 May 2017 20:25:59 +0200 Subject: [PATCH] update colour, width, icon and text --- osu.Game/Overlays/Chat/ChatTabControl.cs | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/osu.Game/Overlays/Chat/ChatTabControl.cs b/osu.Game/Overlays/Chat/ChatTabControl.cs index 875c7c411d..fdfda92214 100644 --- a/osu.Game/Overlays/Chat/ChatTabControl.cs +++ b/osu.Game/Overlays/Chat/ChatTabControl.cs @@ -43,7 +43,7 @@ namespace osu.Game.Overlays.Chat Padding = new MarginPadding(10), }); - AddTabItem(new ChannelTabItem.ChannelSelectorTabItem(new Channel(), channelSelectorActive)); + AddTabItem(new ChannelTabItem.ChannelSelectorTabItem(new Channel { Name = "+" }, channelSelectorActive)); } private class ChannelTabItem : TabItem @@ -218,18 +218,20 @@ namespace osu.Game.Overlays.Chat { activeBindable = active; Depth = float.MaxValue; - Width = 60; + Width = 45; - icon.Icon = FontAwesome.fa_plus; + icon.Icon = 0; icon.X = 0; + + text.TextSize = 45; + textBold.TextSize = 45; } [BackgroundDependencyLoader] private new void load(OsuColour colour) { - backgroundActive = colour.Green; - backgroundInactive = colour.GreenDark; - backgroundHover = colour.Green; + backgroundInactive = colour.Gray2; + backgroundActive = colour.Gray3; updateState(); }