Also add fade to `ChannelItem` selected box

This commit is contained in:
Dean Herbert 2022-03-21 14:41:42 +09:00
parent 428e439f40
commit 7ca3beb7cc
1 changed files with 2 additions and 2 deletions

View File

@ -127,9 +127,9 @@ protected override void LoadComplete()
selectedChannel.BindValueChanged(change =>
{
if (change.NewValue == channel)
selectBox?.Show();
selectBox?.FadeIn(300, Easing.OutQuint);
else
selectBox?.Hide();
selectBox?.FadeOut(200, Easing.OutQuint);
}, true);
Unread.BindValueChanged(change =>