1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 12:33:01 +08:00

Move variable outside of if block

This commit is contained in:
smoogipoo 2019-10-23 17:49:21 +09:00
parent 64682611bb
commit 2c9b11cdfd

View File

@ -217,10 +217,10 @@ namespace osu.Game.Rulesets.Edit
{
distanceSnapGridContainer.Child = distanceSnapGrid;
distanceSnapGridContainer.Show();
}
lastGridUpdateTime = EditorClock.CurrentTime;
}
}
private ScheduledDelegate scheduledUpdate;