Skip to content

Commit

Permalink
Fix Charting Dragging Sustain Trails
Browse files Browse the repository at this point in the history
  • Loading branch information
gamerbross committed May 19, 2024
1 parent dcfc51c commit 9a18e3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/funkin/ui/debug/charting/ChartEditorState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -4566,8 +4566,8 @@ class ChartEditorState extends UIState // UIState derives from MusicBeatState
}

gridGhostHoldNote.visible = true;
gridGhostHoldNote.noteData = gridGhostNote.noteData;
gridGhostHoldNote.noteDirection = gridGhostNote.noteData.getDirection();
gridGhostHoldNote.noteData = currentPlaceNoteData;
gridGhostHoldNote.noteDirection = currentPlaceNoteData.getDirection();
gridGhostHoldNote.setHeightDirectly(dragLengthPixels, true);

gridGhostHoldNote.updateHoldNotePosition(renderedHoldNotes);
Expand Down

0 comments on commit 9a18e3f

Please sign in to comment.