diff --git a/ChangeLog b/ChangeLog index 22fbc15f..aee9b9a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24137,3 +24137,6 @@ 2023-05-18 Fred Gleason * Refactored the 'Edit Clock' dialog in rdlogmanager(1) to be resizeable. +2023-05-19 Fred Gleason + * Fixed a regression in rdlogmanager(1) that caused the font of the + title field in the 'Edit Clock' dialog to be incorrect. diff --git a/rdlogmanager/edit_clock.cpp b/rdlogmanager/edit_clock.cpp index 6c99b69f..cfdbbaf7 100644 --- a/rdlogmanager/edit_clock.cpp +++ b/rdlogmanager/edit_clock.cpp @@ -62,7 +62,7 @@ EditClock::EditClock(QString clockname,bool new_clock, // Clock Names // edit_clockname_label=new QLabel(clockname,this); - edit_clockname_label->setFont(labelFont()); + edit_clockname_label->setFont(bigLabelFont()); edit_shortname_edit=new QLineEdit(this); edit_shortname_edit->setMaxLength(3); edit_shortname_label=new QLabel(tr("Code:"),this);