Skip to content

Commit

Permalink
fix #36736: Articulation symbols too small and shifted left in "Edit …
Browse files Browse the repository at this point in the history
…Style" dialog
  • Loading branch information
jpfleury committed Oct 15, 2014
1 parent 753d232 commit 2b00463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/editstyle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ EditStyle::EditStyle(Score* s, QWidget* parent)
for (int i = 0; i < int(ArticulationType::ARTICULATIONS); ++i) {
ArticulationInfo* ai = &Articulation::articulationList[i];

QPixmap ct = cs->scoreFont()->sym2pixmap(ai->upSym, 3.0);
QPixmap ct = cs->scoreFont()->sym2pixmap(ai->upSym, 0.9);
QIcon icon(ct);
QTableWidgetItem* item = new QTableWidgetItem(icon, qApp->translate("articulation", ai->description.toUtf8().constData()));

Expand Down

0 comments on commit 2b00463

Please sign in to comment.