1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-15 03:02:36 +08:00

Shorten show/hide code

This commit is contained in:
Bartłomiej Dach
2020-10-31 12:28:35 +01:00
Unverified
parent 3322b8a7ea
commit d74c19e2d7
@@ -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();
}