diff options
Diffstat (limited to 'shared/custom_tooltip.cpp')
-rw-r--r-- | shared/custom_tooltip.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shared/custom_tooltip.cpp b/shared/custom_tooltip.cpp index be2d11b5..5b4e5e40 100644 --- a/shared/custom_tooltip.cpp +++ b/shared/custom_tooltip.cpp @@ -34,7 +34,8 @@ CustomTooltip::PopupFrameGenerated::PopupFrameGenerated( long style ) : wxFrame(parent, id, title, pos, size, style) { this->SetSizeHints( wxDefaultSize, wxDefaultSize ); - this->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOBK)); + this->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOBK)); //both required: on Ubuntu background is black, foreground white! + this->SetForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOTEXT)); // wxBoxSizer* bSizer158; bSizer158 = new wxBoxSizer( wxHORIZONTAL ); |