Fix compose mode not showing distance snap grid when entering with a selection

This commit is contained in:
Dean Herbert 2020-09-22 16:02:07 +09:00
parent e52a330dd8
commit 8e43266460
1 changed files with 3 additions and 0 deletions

View File

@ -54,6 +54,9 @@ private void load()
EditorBeatmap.SelectedHitObjects.CollectionChanged += (_, __) => updateDistanceSnapGrid();
EditorBeatmap.PlacementObject.ValueChanged += _ => updateDistanceSnapGrid();
distanceSnapToggle.ValueChanged += _ => updateDistanceSnapGrid();
// we may be entering the screen with a selection already active
updateDistanceSnapGrid();
}
protected override ComposeBlueprintContainer CreateBlueprintContainer(IEnumerable<DrawableHitObject> hitObjects)