1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 19:08:26 -06:00

Fix incorrect text color in dark mode (#920)

This commit is contained in:
Kenneth Chew
2022-08-21 11:58:08 -04:00
committed by GitHub
parent 53b4019d1f
commit a23d4392fb
2 changed files with 3 additions and 3 deletions

View File

@@ -472,9 +472,9 @@ namespace VeraCrypt
VolumePimHelpStaticText->SetLabel(LangString["PIM_CHANGE_WARNING"]); VolumePimHelpStaticText->SetLabel(LangString["PIM_CHANGE_WARNING"]);
guiUpdated = true; guiUpdated = true;
} }
if (!pimChanged && VolumePimHelpStaticText->GetForegroundColour() != *wxBLACK) if (!pimChanged && VolumePimHelpStaticText->GetForegroundColour() != wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT))
{ {
VolumePimHelpStaticText->SetForegroundColour(*wxBLACK); VolumePimHelpStaticText->SetForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT));
VolumePimHelpStaticText->SetLabel(LangString["IDC_PIM_HELP"]); VolumePimHelpStaticText->SetLabel(LangString["IDC_PIM_HELP"]);
guiUpdated = true; guiUpdated = true;
} }

View File

@@ -82,7 +82,7 @@ namespace VeraCrypt
} }
else else
{ {
VolumePimHelpStaticText->SetForegroundColour(*wxBLACK); VolumePimHelpStaticText->SetForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT));
VolumePimHelpStaticText->SetLabel(LangString["IDC_PIM_HELP"]); VolumePimHelpStaticText->SetLabel(LangString["IDC_PIM_HELP"]);
} }
Fit(); Fit();