1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:47:24 +08:00

Shorten show/hide code

This commit is contained in:
Bartłomiej Dach 2020-10-31 12:28:35 +01:00
parent 3322b8a7ea
commit d74c19e2d7

View File

@ -256,11 +256,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
selectionDetailsText.Text = count > 0 ? count.ToString() : string.Empty;
if (count > 0)
Show();
else
Hide();
this.FadeTo(count > 0 ? 1 : 0);
OnSelectionChanged();
}