Skip to content

Commit

Permalink
Spectrum markers dialog: set frequency dials up to 12 digits. Complem…
Browse files Browse the repository at this point in the history
…ent of #1476
  • Loading branch information
f4exb committed Oct 15, 2022
1 parent 949a9e9 commit 00ce7e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sdrgui/gui/spectrummarkersdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ SpectrumMarkersDialog::SpectrumMarkersDialog(
{
ui->setupUi(this);
ui->markerFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
ui->markerFrequency->setValueRange(false, 10, -9999999999L, 9999999999L);
ui->markerFrequency->setValueRange(false, 12, -999999999999L, 999999999999L);
ui->marker->setMaximum(m_histogramMarkers.size() - 1);
ui->wMarkerFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
ui->wMarkerFrequency->setValueRange(false, 10, -9999999999L, 9999999999L);
ui->wMarkerFrequency->setValueRange(false, 12, -999999999999L, 999999999999L);
ui->wMarker->setMaximum(m_waterfallMarkers.size() - 1);
ui->aMarkerFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
ui->aMarkerFrequency->setValueRange(false, 10, -9999999999L, 9999999999L);
ui->aMarkerFrequency->setValueRange(false, 12, -999999999999L, 999999999999L);
ui->aMarker->setMaximum(m_annotationMarkers.size() - 1);
ui->aMarkerBandwidth->setColorMapper(ColorMapper::GrayGreenYellow);
ui->aMarkerBandwidth->setValueRange(true, 9, 0, 999999999L);
Expand Down

0 comments on commit 00ce7e9

Please sign in to comment.