mirror of
https://github.com/ppy/osu
synced 2025-03-04 02:19:45 +00:00
Fix wrong initial topic color of not joined channels in the channel selection
This commit is contained in:
parent
6b3b012960
commit
5c125737cb
@ -76,7 +76,6 @@ namespace osu.Game.Overlays.Chat
|
||||
Size = new Vector2(text_size),
|
||||
Shadow = false,
|
||||
Margin = new MarginPadding { Right = 10f },
|
||||
Alpha = 0f,
|
||||
},
|
||||
},
|
||||
},
|
||||
@ -109,7 +108,6 @@ namespace osu.Game.Overlays.Chat
|
||||
TextSize = text_size,
|
||||
Font = @"Exo2.0-SemiBold",
|
||||
Shadow = false,
|
||||
Alpha = 0.8f,
|
||||
},
|
||||
},
|
||||
},
|
||||
@ -151,6 +149,9 @@ namespace osu.Game.Overlays.Chat
|
||||
|
||||
joinedBind.ValueChanged += updateColour;
|
||||
joinedBind.BindTo(channel.Joined);
|
||||
|
||||
joinedBind.TriggerChange();
|
||||
FinishTransforms(true);
|
||||
}
|
||||
|
||||
protected override bool OnHover(InputState state)
|
||||
|
Loading…
Reference in New Issue
Block a user