From 03b2b11938d32993f989e891cc30f4fb0edf74c8 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Fri, 21 Dec 2018 22:20:52 -0500 Subject: [PATCH] Fixed issue with call activity table font not being set on application start --- mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 85d9dac..24b99db 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -10111,6 +10111,8 @@ void MainWindow::displayBandActivity() { void MainWindow::displayCallActivity() { auto now = DriftingDateTime::currentDateTimeUtc(); + ui->tableWidgetCalls->setFont(m_config.table_font()); + // Selected callsign QString selectedCall = callsignSelected();