Skip to content

Commit

Permalink
Merge pull request #3648 from JGreenlee/271717-match-tempo-new-wizard
Browse files Browse the repository at this point in the history
fix #271717: Match the default tempo in New Score Wizard
  • Loading branch information
lasconic committed Apr 30, 2018
2 parents 9f6355e + 1c782ac commit 187b74b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/newwizard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ NewWizardPage5::NewWizardPage5(QWidget* parent)
_tempo = new QDoubleSpinBox;
_tempo->setAccessibleName(tr("Beats per minute"));
_tempo->setRange(20.0, 400.0);
_tempo->setValue(100.0);
_tempo->setValue(120.0);
_tempo->setDecimals(1);
QHBoxLayout* l2 = new QHBoxLayout;
l2->addWidget(bpm);
Expand Down

0 comments on commit 187b74b

Please sign in to comment.