From 5df28de3407b8f9ca79ac27b0611cfefd0573bbe Mon Sep 17 00:00:00 2001 From: Stenzek Date: Fri, 27 Jun 2025 23:40:38 +1000 Subject: [PATCH] Qt: Fix hotkey category heading size on MacOS --- src/duckstation-qt/hotkeysettingswidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/duckstation-qt/hotkeysettingswidget.cpp b/src/duckstation-qt/hotkeysettingswidget.cpp index 9d70ef0fc..3fb4f7216 100644 --- a/src/duckstation-qt/hotkeysettingswidget.cpp +++ b/src/duckstation-qt/hotkeysettingswidget.cpp @@ -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);