diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-07-15 20:00:08 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-07-15 20:00:57 +0200 |
| commit | 457d3cacfd449bde047b91ca62d1f353adf5e0f5 (patch) | |
| tree | 3a773ec074cfdd875cb22e15c10853e16cef0b45 | |
| parent | a196e3555bde9c3995a933d22ae0e2b67f702a2f (diff) | |
Tweak background colour of nag in dark mode.
| -rw-r--r-- | src/wx/html_dialog.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/html_dialog.cc b/src/wx/html_dialog.cc index c8138c8cd..0f8fe22c1 100644 --- a/src/wx/html_dialog.cc +++ b/src/wx/html_dialog.cc @@ -53,7 +53,7 @@ HTMLDialog::HTMLDialog (wxWindow* parent, wxString title, wxString html, bool ok sizer->Add (h, 1, wxEXPAND | wxALL, 6); if (gui_is_dark()) { - h->SetHTMLBackgroundColour(*wxBLACK); + h->SetHTMLBackgroundColour(wxColour(50, 50, 50)); } h->Bind (wxEVT_HTML_LINK_CLICKED, boost::bind(&HTMLDialog::link_clicked, this, _1)); |
