summaryrefslogtreecommitdiff
path: root/src/wx/html_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-07-15 20:00:08 +0200
committerCarl Hetherington <cth@carlh.net>2024-07-15 20:00:57 +0200
commit457d3cacfd449bde047b91ca62d1f353adf5e0f5 (patch)
tree3a773ec074cfdd875cb22e15c10853e16cef0b45 /src/wx/html_dialog.cc
parenta196e3555bde9c3995a933d22ae0e2b67f702a2f (diff)
Tweak background colour of nag in dark mode.
Diffstat (limited to 'src/wx/html_dialog.cc')
-rw-r--r--src/wx/html_dialog.cc2
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));