Skip to content

Commit

Permalink
Use the correct unit for symbol rate
Browse files Browse the repository at this point in the history
  • Loading branch information
miek committed Feb 15, 2018
1 parent ddcdeb6 commit 78b6e38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spectrogramcontrols.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ void SpectrogramControls::timeSelectionChanged(float time)

int symbols = cursorSymbolsSpinBox->value();
symbolPeriodLabel->setText(QString::fromStdString(formatSIValue(time / symbols)) + "s");
symbolRateLabel->setText(QString::fromStdString(formatSIValue(symbols / time)) + "Hz");
symbolRateLabel->setText(QString::fromStdString(formatSIValue(symbols / time)) + "Bd");
}
}

Expand Down

0 comments on commit 78b6e38

Please sign in to comment.