1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 02:42:54 +08:00

Merge pull request #10273 from peppy/editor-fix-missing-update-after-drag

Trigger a hitobject update after blueprint drag ends
This commit is contained in:
Dan Balasescu 2020-09-28 16:34:23 +09:00 committed by GitHub
commit 5cceb3c724
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -201,6 +201,10 @@ namespace osu.Game.Screens.Edit.Compose.Components
if (isDraggingBlueprint)
{
// handle positional change etc.
foreach (var obj in selectedHitObjects)
Beatmap.UpdateHitObject(obj);
changeHandler?.EndChange();
isDraggingBlueprint = false;
}