diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2026-02-20 17:26:07 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-20 17:26:07 -0600 |
| commit | d939b306c44a1a5fcd5bac67c2979310ece52244 (patch) | |
| tree | 40f41fb07c445a03d34d4843b72bcf852a5220a0 | |
| parent | 981b7df4203d2907278506f4115a3604d7422fbb (diff) | |
| parent | 643fcaec036a5ca9a05511bc0ab9e2cf2a98b606 (diff) | |
Merge pull request #14405 from cristian64/restore_log_font_current_index
DolphinQt: Restore log font current index accurately.
| -rw-r--r-- | Source/Core/DolphinQt/Config/LogWidget.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Core/DolphinQt/Config/LogWidget.cpp b/Source/Core/DolphinQt/Config/LogWidget.cpp index d076b3a9ac..1b59411c08 100644 --- a/Source/Core/DolphinQt/Config/LogWidget.cpp +++ b/Source/Core/DolphinQt/Config/LogWidget.cpp @@ -182,8 +182,7 @@ void LogWidget::LoadSettings() Qt::ScrollBarAlwaysOn); // Log - Font Selection - // Currently "Debugger Font" is not supported as there is no Qt Debugger, defaulting to Monospace - m_log_font->setCurrentIndex(std::min(settings.value(QStringLiteral("logging/font")).toInt(), 1)); + m_log_font->setCurrentIndex(settings.value(QStringLiteral("logging/font")).toInt()); UpdateFont(); } |
