From f10d6fb712d51a7673315fdb21300778ec97ad26 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Mon, 16 Nov 2020 17:36:50 +0000 Subject: [PATCH] Fix regression in hiding Rx Frequency window titles & headings --- widgets/mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index cd260df5b..a40e27d37 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -2597,8 +2597,10 @@ void MainWindow::hideMenus(bool checked) ui->menuBar->setVisible(!checked); if(m_mode!="FreqCal" and m_mode!="WSPR" and m_mode!="FST4W") { ui->lh_decodes_title_label->setVisible(!checked); + ui->rh_decodes_title_label->setVisible(!checked); } ui->lh_decodes_headings_label->setVisible(!checked); + ui->rh_decodes_headings_label->setVisible(!checked); ui->gridLayout_5->layout()->setSpacing(spacing); ui->horizontalLayout_2->layout()->setSpacing(spacing); ui->horizontalLayout_5->layout()->setSpacing(spacing);