-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extend range of supported notes in piano roll #4073
Comments
I think the range is moderated here. void Note::setKey( const int key )
{
const int k = qBound( 0, key, NumKeys - 1 );
m_key = k;
} |
The pianoroll has every possible note it can get from midi input... What note number should the light get? How is it done by other software? Perhaps custom control change messages trigger by a "note"? |
Yes, but not in Example: NumOctaves = 9
|
Yes, I believe this issue should be resolved in the recent alpha release, all 128 MIDI keys are now available. |
Reported in Discord: https://discordapp.com/channels/203559236729438208/332258319228207114?jump=395583597127532544
The text was updated successfully, but these errors were encountered: