From cb151ab85064276ff4497b25c1e30339532738e6 Mon Sep 17 00:00:00 2001 From: Sen66 Date: Fri, 13 Feb 2026 00:45:51 +0100 Subject: [PATCH] Fix fonts not being themed after switching --- src/editor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/editor.cpp b/src/editor.cpp index ea8ceca..c3dc614 100644 --- a/src/editor.cpp +++ b/src/editor.cpp @@ -2237,6 +2237,7 @@ void RcxEditor::setEditorFont(const QString& fontName) { // Re-apply margin styles and width with new font metrics allocateMarginStyles(); + applyTheme(ThemeManager::instance().current()); QString marginSizer = QString(" %1 ").arg(QString(m_layout.offsetHexDigits, '0')); m_sci->setMarginWidth(0, marginSizer); }