bit more readable

This commit is contained in:
John Neijzen 2017-06-07 20:12:16 +08:00
parent 23a7045eef
commit f9c466eee9
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ private float computeYPositions(bool animated = true)
foreach (BeatmapPanel panel in group.BeatmapPanels) foreach (BeatmapPanel panel in group.BeatmapPanels)
{ {
if (panel == selectedPanel) if (panel == selectedPanel)
selectedY = ((currentY + (panel.DrawHeight / 2)) - (DrawHeight / 2)); selectedY = currentY + (panel.DrawHeight / 2) - (DrawHeight / 2);
panel.MoveToX(-50, 500, EasingTypes.OutExpo); panel.MoveToX(-50, 500, EasingTypes.OutExpo);