From 245ade988ed226ea8d86254c59f823626d32c77d Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Sat, 9 Sep 2017 19:03:37 +0100 Subject: [PATCH] frmMain: Fix issue with displaying normal background colour after disabling it in preferences. --- source/frmMain.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/frmMain.cpp b/source/frmMain.cpp index 8b2624b..03f8cd9 100644 --- a/source/frmMain.cpp +++ b/source/frmMain.cpp @@ -1456,7 +1456,11 @@ void frmMain::LoadPreferences(){ ContactBackgroundColour = preferences.GetBackgroundContactColourData(); - } + } else { + + ContactBackgroundColour = wxTransparentColour; + + } treAccounts->DeleteAllItems(); -- 2.39.2