From 3728cbed5efc0afa30f133023b26f5d75542a30b Mon Sep 17 00:00:00 2001 From: Roy Qu Date: Thu, 30 May 2024 18:52:06 +0800 Subject: [PATCH] - fix: All color scheme names are incorrectly displayed as bold, if the current one is a customed one. --- RedPandaIDE/settingsdialog/editorcolorschemewidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/RedPandaIDE/settingsdialog/editorcolorschemewidget.cpp b/RedPandaIDE/settingsdialog/editorcolorschemewidget.cpp index c130c646..1936a326 100644 --- a/RedPandaIDE/settingsdialog/editorcolorschemewidget.cpp +++ b/RedPandaIDE/settingsdialog/editorcolorschemewidget.cpp @@ -325,6 +325,7 @@ void EditorColorSchemeWidget::changeSchemeComboFont() void EditorColorSchemeWidget::doLoad() { ui->cbScheme->setCurrentText(pSettings->editor().colorScheme()); + changeSchemeComboFont(); ui->chkRainborParenthesis->setChecked(pSettings->editor().rainbowParenthesis()); }