Ignore Add-channel button

This commit is contained in:
Paul Teng
2019-05-11 19:16:15 -04:00
committed by GitHub
parent 6cf1ca288f
commit 3971a49549

View File

@ -198,6 +198,11 @@ namespace osu.Game.Overlays
channelSelectionOverlay.State = Visibility.Visible;
return;
}
if (e.NewValue.Name == "+")
{
return;
}
textbox.Current.Disabled = e.NewValue.ReadOnly;