If the autocompletion list was specified via wxTextCtrl::AutoComplete(), then while typing the text the hints are shown on a white background in Dark Mode.
When typing, hints should be shown on a dark background.
#include <wx/wx.h> class MyFrame : public wxFrame { public: MyFrame() : wxFrame(nullptr, wxID_ANY, "AutoComplete") { wxTextCtrl* text = new wxTextCtrl(this, wxID_ANY); wxArrayString hints; hints.Add("Apple"); hints.Add("Apricot"); hints.Add("Banana"); hints.Add("Orange"); hints.Add("Pineapple"); text->AutoComplete(hints); } }; class MyApp : public wxApp { public: bool OnInit() override { MSWEnableDarkMode(wxApp::DarkMode_Always); MyFrame* frame = new MyFrame(); frame->Show(); return true; } }; wxIMPLEMENT_APP(MyApp);
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()
@vadz
Excuse me, do you have any plans to fix this issue? I'd like to know because I don't know what to do next. If you don't plan to fix it, then I'll try to implement it myself, using a custom popup window.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()
Sorry, I didn't have time to look at this and don't know how to fix it right now.
Generally speaking, if I don't reply to some issue or question, it's because I don't have anything useful to say...
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()