| 1632 | s.save(); |
| 1633 | } |
| 1634 | void SpectrumWidget::setShowGrid(bool on) { |
| 1635 | m_showGrid = on; |
| 1636 | auto& s = AppSettings::instance(); |
| 1637 | s.setValue(settingsKey("DisplayShowGrid"), on ? "True" : "False"); |
| 1638 | s.save(); |
| 1639 | markOverlayDirty(); |
| 1640 | } |
| 1641 | void SpectrumWidget::setFreqGridSpacing(int khz) { |
| 1642 | m_freqGridSpacingKhz = khz; |
| 1643 | auto& s = AppSettings::instance(); |
no test coverage detected