Make current value behaviour between channels and tabs consistent.

- Trim whitespace
This commit is contained in:
naoey 2017-08-18 13:35:48 +05:30
parent 4f7ae1ed8b
commit 7ad4c046db
2 changed files with 7 additions and 1 deletions

View File

@ -57,6 +57,9 @@ protected override void AddTabItem(TabItem<Channel> item, bool addToDropdown = t
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 @@ private void fadeInactive()
protected override bool OnHover(InputState state)
{
closeButton?.FadeIn(1f, Easing.InBounce);
if (!Active)
box.FadeColour(backgroundHover, transition_length, Easing.OutQuint);
return true;

View File

@ -398,7 +398,10 @@ private void removeChannel(Channel channel)
if (channel == null) return;
if (channel == CurrentChannel)
{
currentChannel = null;
currentChannelContainer.Clear(false);
}
careChannels.Remove(channel);
loadedChannels.Remove(loadedChannels.Find(c => c.Channel == channel));