From bbb280b4f39b9706f75d2aa949d67e16c9b904df Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 5 May 2022 13:35:27 -0400 Subject: [PATCH] Set font used in Active Stations window equal to that in the decoded text windows. --- widgets/mainwindow.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 88efbe10d..954dff94a 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -1409,6 +1409,9 @@ void MainWindow::setDecodedTextFont (QFont const& font) if (m_contestLogWindow) { m_contestLogWindow->set_log_view_font (font); } + if(m_ActiveStationsWidget != NULL) { + m_ActiveStationsWidget->changeFont(font); + } updateGeometry (); }