mirror of
https://github.com/ppy/osu
synced 2024-12-14 19:06:07 +00:00
Make current value behaviour between channels and tabs consistent.
- Trim whitespace
This commit is contained in:
parent
4f7ae1ed8b
commit
7ad4c046db
@ -57,6 +57,9 @@ namespace osu.Game.Overlays.Chat
|
||||
TabContainer.ChangeChildDepth(selectorTab, float.MaxValue);
|
||||
|
||||
base.AddTabItem(item, addToDropdown);
|
||||
|
||||
if (SelectedTab == null)
|
||||
SelectTab(item);
|
||||
}
|
||||
|
||||
protected override TabItem<Channel> CreateTabItem(Channel value)
|
||||
@ -149,7 +152,7 @@ namespace osu.Game.Overlays.Chat
|
||||
protected override bool OnHover(InputState state)
|
||||
{
|
||||
closeButton?.FadeIn(1f, Easing.InBounce);
|
||||
|
||||
|
||||
if (!Active)
|
||||
box.FadeColour(backgroundHover, transition_length, Easing.OutQuint);
|
||||
return true;
|
||||
|
@ -398,7 +398,10 @@ namespace osu.Game.Overlays
|
||||
if (channel == null) return;
|
||||
|
||||
if (channel == CurrentChannel)
|
||||
{
|
||||
currentChannel = null;
|
||||
currentChannelContainer.Clear(false);
|
||||
}
|
||||
|
||||
careChannels.Remove(channel);
|
||||
loadedChannels.Remove(loadedChannels.Find(c => c.Channel == channel));
|
||||
|
Loading…
Reference in New Issue
Block a user