Skip to content

Commit 84b414a

Browse files
authored
Merge pull request musescore#3499 from Jojo-Schmitz/pianoroll
Fix #226416: Change both "Drumroll Editor" and "Pianoroll Editor" to "Piano Roll Editor"
2 parents 756fe57 + 132c71e commit 84b414a

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

mscore/scoreview.cpp

+2-8
Original file line numberDiff line numberDiff line change
@@ -379,14 +379,8 @@ void ScoreView::measurePopup(const QPoint& gpos, Measure* obj)
379379
a->setData("edit-drumset");
380380
a->setEnabled(staff->part()->instrument()->drumset() != 0);
381381

382-
if (staff->part()->instrument()->drumset()) {
383-
a = popup->addAction(tr("Drumroll Editor..."));
384-
a->setData("drumroll");
385-
}
386-
else {
387-
a = popup->addAction(tr("Pianoroll Editor..."));
388-
a->setData("pianoroll");
389-
}
382+
a = popup->addAction(tr("Piano Roll Editor..."));
383+
a->setData("pianoroll");
390384

391385
a = popup->addAction(tr("Staff Properties..."));
392386
a->setData("staff-properties");

0 commit comments

Comments
 (0)