From 3b4ea12e5fd78fa89b56b5e1294ba29cc4883388 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Fri, 21 Dec 2018 22:14:14 -0500 Subject: [PATCH] Band Activity Double Click Switches Frequency Offset --- mainwindow.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index d42a2be..85d9dac 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -7608,6 +7608,9 @@ void MainWindow::on_tableWidgetRXAll_cellDoubleClicked(int row, int col){ auto item = ui->tableWidgetRXAll->item(row, 0); int offset = item->text().toInt(); + // switch to the offset of this row + setFreqOffsetForRestore(offset, false); + // print the history in the main window... int activityAging = m_config.activity_aging(); QDateTime now = DriftingDateTime::currentDateTimeUtc();