mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 05:38:46 -05:00
Fix a settings key character case issue
Settings keys are scase sensitive on non-Windows platforms. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6362 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
c4b9ee6e97
commit
1268600497
@ -74,7 +74,7 @@ WideGraph::WideGraph(QSettings * settings, QWidget *parent) :
|
||||
ui->fStartSpinBox->setValue(ui->widePlot->startFreq());
|
||||
m_waterfallPalette=m_settings->value("WaterfallPalette","Default").toString();
|
||||
m_userPalette = WFPalette {m_settings->value("UserPalette").value<WFPalette::Colours> ()};
|
||||
int m_fMin = m_settings->value ("fMin", 2500).toInt ();
|
||||
int m_fMin = m_settings->value ("Fmin", 2500).toInt ();
|
||||
ui->fSplitSpinBox->setValue (m_fMin);
|
||||
setRxRange (m_fMin);
|
||||
m_settings->endGroup();
|
||||
|
Loading…
Reference in New Issue
Block a user