Set font used in Active Stations window equal to that in the decoded text windows.

This commit is contained in:
Joe Taylor 2022-05-05 13:35:27 -04:00
parent b9b3d1d6f5
commit bbb280b4f3
1 changed files with 3 additions and 0 deletions

View File

@ -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 ();
}