From 1aeaec7a6db2be16cb4ea675e723ebec5b30e9ce Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Wed, 13 Dec 2023 19:32:38 +0100 Subject: [PATCH] Change some default values. --- qmap/mainwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qmap/mainwindow.cpp b/qmap/mainwindow.cpp index 9f3cc8cbe..e9c28c864 100644 --- a/qmap/mainwindow.cpp +++ b/qmap/mainwindow.cpp @@ -267,8 +267,8 @@ void MainWindow::readSettings() m_myCall=settings.value("MyCall","").toString(); m_myGrid=settings.value("MyGrid","").toString(); m_idInt=settings.value("IDint",0).toInt(); - m_astroFont=settings.value("AstroFont",20).toInt(); - m_myCallColor=settings.value("MyCallColor",0).toInt(); + m_astroFont=settings.value("AstroFont",18).toInt(); + m_myCallColor=settings.value("MyCallColor",1).toInt(); m_saveDir=settings.value("SaveDir",m_appDir + "/save").toString(); m_azelDir=settings.value("AzElDir",m_appDir).toString(); m_timeout=settings.value("Timeout",20).toInt(); @@ -286,7 +286,7 @@ void MainWindow::readSettings() ui->actionLinrad->setChecked(settings.value( "PaletteLinrad",false).toBool()); - m_modeQ65=settings.value("nModeQ65",2).toInt(); + m_modeQ65=settings.value("nModeQ65",3).toInt(); if(m_modeQ65==1) ui->actionQ65A->setChecked(true); if(m_modeQ65==2) ui->actionQ65B->setChecked(true); if(m_modeQ65==3) ui->actionQ65C->setChecked(true);