Fix for code blocks in dark mode

This commit is contained in:
Miguel Jacq 2025-11-06 18:56:07 +11:00
parent 267e412663
commit b5563c18a4
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9
5 changed files with 144 additions and 8 deletions

View file

@ -11,7 +11,7 @@ class _ThemeSpy:
def __init__(self):
self.calls = []
def apply(self, t):
def set(self, t):
self.calls.append(t)
@ -78,7 +78,7 @@ def test_save_persists_all_fields(monkeypatch, qtbot, tmp_path):
def __init__(self):
self.calls = []
def apply(self, theme):
def set(self, theme):
self.calls.append(theme)
class _Parent(QWidget):