Skip to content

Commit

Permalink
Merge pull request #6507 from Howard-C/time_signature
Browse files Browse the repository at this point in the history
fix #309754: Create Time Signatures dialogue doesn't need to add special text whenever the internal value of nominator or denominator is changed
  • Loading branch information
anatoly-os authored Sep 1, 2020
2 parents 903e2ed + c8d70a9 commit fe89e74
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions mscore/timedialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ void TimeDialog::save()

void TimeDialog::zChanged(int val)
{
zText->setText(QString("%1").arg(val));
Fraction sig(zNominal->value(), denominator());
groups->setSig(sig, Groups::endings(sig), zText->text(), nText->text());
}
Expand All @@ -138,7 +137,6 @@ void TimeDialog::zChanged(int val)

void TimeDialog::nChanged(int /*val*/)
{
nText->setText(QString("%1").arg(denominator()));
Fraction sig(zNominal->value(), denominator());
groups->setSig(sig, Groups::endings(sig), zText->text(), nText->text());
}
Expand Down

0 comments on commit fe89e74

Please sign in to comment.