Qt: Fix hotkey category heading size on MacOS

pull/3466/head
Stenzek 4 months ago
parent 866b77e229
commit 5df28de340
No known key found for this signature in database

@ -86,7 +86,8 @@ void HotkeySettingsWidget::createButtons()
CategoryWidgets cw;
cw.label = new QLabel(category, m_container);
QFont label_font(cw.label->font());
label_font.setPointSizeF(14.0f);
label_font.setPixelSize(19);
label_font.setBold(true);
cw.label->setFont(label_font);
m_layout->addWidget(cw.label);

Loading…
Cancel
Save