fix #271717: Match the default tempo in New Score Wizard

This commit is contained in:
JGreenlee 2018-04-27 20:33:21 -04:00
parent 9f6355ecbb
commit 1c782ac34d

View file

@ -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);