Skip to content

Commit

Permalink
Fix a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
poec987 committed Jun 25, 2024
1 parent f417fd4 commit d3acf35
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions source/ChartingState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -899,9 +899,15 @@ class ChartingState extends MusicBeatState
stepperSusLength.value = curSelectedNote[2];

if (curSelectedNote[3] != null)
{
noteTypeDropDown.selectedLabel = curSelectedNote[3];
selectedNoteType = curSelectedNote[3];
}
else
{
noteTypeDropDown.selectedLabel = "Normal";
selectedNoteType = "Normal";
}
}
}

Expand Down

0 comments on commit d3acf35

Please sign in to comment.