Add Notes on Beat list view #17

Open
kevqiu wants to merge 2 commits from kevqiu/notes-on-beat into C#-master
Showing only changes of commit 664b29c8ea - Show all commits
+1 -6
View File
@@ -2207,11 +2207,6 @@ namespace BAKKA_Editor
circlePanel.Invalidate();
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void UpdateNotesOnBeat()
{
// Fill list of notes on beat
@@ -2226,7 +2221,6 @@ namespace BAKKA_Editor
return listItem;
}).ToArray();
notesOnBeat.Items.AddRange(notes);
}
@@ -2241,6 +2235,7 @@ namespace BAKKA_Editor
float currentMeasure = circleView.CurrentMeasure;
// Find the matching selected note
var noteInChart = chart.Notes.FirstOrDefault(x => x.BeatInfo.MeasureDecimal == currentMeasure &&
x.NoteType.ToLabel() == noteType &&
x.Position == position &&