Skip to content

Commit

Permalink
fix #48196: Extra decimal in Tempo at score creation
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Feb 19, 2015
1 parent df7b786 commit 02380ad
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mscore/newwizard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ NewWizardPage5::NewWizardPage5(QWidget* parent)
_tempo->setAccessibleName(tr("Beats per minute"));
_tempo->setRange(20.0, 400.0);
_tempo->setValue(100.0);
_tempo->setDecimals(1);
QHBoxLayout* l2 = new QHBoxLayout;
l2->addWidget(bpm);
l2->addWidget(_tempo);
Expand Down

0 comments on commit 02380ad

Please sign in to comment.