More tweaks to the QMAP user interface.

This commit is contained in:
Joe Taylor
2023-02-23 12:03:38 -05:00
parent 631e3ed1cb
commit 73e1198f08
4 changed files with 28 additions and 2 deletions
+11
View File
@@ -1057,3 +1057,14 @@ bool MainWindow::isGrid4(QString g)
if(g.mid(3,1)<'0' or g.mid(3,1)>'9') return false;
return true;
}
void MainWindow::on_actionQuick_Start_Guide_to_Q65_triggered()
{
QDesktopServices::openUrl (QUrl {"https://wsjt.sourceforge.io/Q65_Quick_Start.pdf"});
}
void MainWindow::on_actionQuick_Start_Guide_to_WSJT_X_2_7_and_QMAP_triggered()
{
QDesktopServices::openUrl (QUrl {"https://wsjt.sourceforge.io/Quick_Start_WSJT-X_2.7_QMAP.pdf"});
}