Fixed bold font in call activity...again

This commit is contained in:
Jordan Sherer 2018-12-23 22:24:45 -05:00
parent fb9c280c67
commit 0f05bfedc3

View File

@ -10347,7 +10347,9 @@ void MainWindow::displayCallActivity() {
auto item = ui->tableWidgetCalls->item(row, col);
if(item){
auto f = m_config.table_font();
f.setBold(bold);
if(bold){
f.setBold(true);
}
item->setFont(f);
}
}