Skip to content

Commit

Permalink
fix #271717: Match the default tempo in New Score Wizard
Browse files Browse the repository at this point in the history
  • Loading branch information
JGreenlee authored and lasconic committed Apr 30, 2018
1 parent 532506d commit f632dd9
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 @@ -377,7 +377,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 f632dd9

Please sign in to comment.