Skip to content

Commit

Permalink
fix #276668: missing swing in text palette
Browse files Browse the repository at this point in the history
  • Loading branch information
jthistle committed Sep 29, 2018
1 parent 097d606 commit 65d8201
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions mscore/menus.cpp
Expand Up @@ -1426,12 +1426,10 @@ Palette* MuseScore::newTextPalette()
rhm->setXmlText("B1");
sp->append(rhm, tr("Rehearsal mark"));

#if 0
st = new StaffText(Tid::TEMPO, gscore);
st = new StaffText(gscore, Tid::TEMPO);

This comment has been minimized.

Copy link
@Jojo-Schmitz

Jojo-Schmitz Oct 17, 2018

Contributor

Needs to be SystemText(gscore, Tid::TEMPO), see https://musescore.org/en/node/276668#comment-856735

See #4039

st->setXmlText(tr("Swing"));
st->setSwing(true);
sp->append(st, tr("Swing"));
#endif

SystemText* stxt = new SystemText(gscore);
stxt->setXmlText(tr("System Text"));
Expand Down

0 comments on commit 65d8201

Please sign in to comment.