Qt: Fix hotkey category heading size on MacOS

This commit is contained in:
Stenzek 2025-06-27 23:40:38 +10:00
parent 866b77e229
commit 5df28de340
No known key found for this signature in database

View File

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