Fix out of bounds note selection

This commit is contained in:
Hyper_ 2024-08-05 20:02:23 -03:00
parent 9b483de1da
commit d43042fd36

View file

@ -4223,8 +4223,8 @@ class ChartEditorState extends UIState // UIState derives from MusicBeatState
}
else
{
// Minimum of 0.
return 0;
// Minimum of -1.
return -1;
}
});