From 4d825e932ea7db29d5e1992844e0204b0a8564e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Va=CC=81clav=20Slavi=CC=81k?= Date: Mon, 26 Jun 2023 13:30:18 +0200 Subject: [PATCH] Fix extractors prefs background in macOS dark mode --- src/prefsdlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prefsdlg.cpp b/src/prefsdlg.cpp index b2061245d1..63ece7f8d0 100644 --- a/src/prefsdlg.cpp +++ b/src/prefsdlg.cpp @@ -830,7 +830,7 @@ class ExtractorsPageWindow : public PrefsPanel // be rendered correctly, so we just use normal background for now: if (ColorScheme::GetWindowMode(this) == ColorScheme::Dark) { - listPanel->SetBackgroundColour(listPanel->GetDefaultAttributes().colBg); + listPanel->SetBackgroundColour(wxNullColour); } else #endif