[Feature Request] pitch up/down feature in the piano roll.

• Mar 3, 2016 - 06:17
Type
Graphical (UI)
Severity
S5 - Suggestion
Status
closed
Project

I think it's cool if we can change selected notes' pitch by clicking up-key and down-key in the piano roll. I already wrote code so I'm going to create a pull request now.


Comments

Selection in the piano works only on notes. Not "NoteEvent"s

for (QGraphicsItem* item : items) {
if (item->type() == PianoItemType) {
Note* note = static_cast(item)->note();
_score->select(note, SelectType::ADD, 0);
}
}
}

So technically, if selection works only on notes, we can change selected notes' pitch.