diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:09:02 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:09:02 +0200 |
commit | 62490fd57f403da83fc5dd6e5ec2f3fcfa8c47cb (patch) | |
tree | 8485ba5ea0f88050714350dfbdc13486037cdb2e /shared/custom_tooltip.cpp | |
parent | 3.10 (diff) | |
download | FreeFileSync-62490fd57f403da83fc5dd6e5ec2f3fcfa8c47cb.tar.gz FreeFileSync-62490fd57f403da83fc5dd6e5ec2f3fcfa8c47cb.tar.bz2 FreeFileSync-62490fd57f403da83fc5dd6e5ec2f3fcfa8c47cb.zip |
3.11
Diffstat (limited to 'shared/custom_tooltip.cpp')
-rw-r--r-- | shared/custom_tooltip.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/custom_tooltip.cpp b/shared/custom_tooltip.cpp index b915b226..be2d11b5 100644 --- a/shared/custom_tooltip.cpp +++ b/shared/custom_tooltip.cpp @@ -8,7 +8,7 @@ #include <wx/stattext.h> #include <wx/sizer.h> #include <wx/statbmp.h> - +#include <wx/settings.h> class CustomTooltip::PopupFrameGenerated : public wxFrame { @@ -34,7 +34,7 @@ CustomTooltip::PopupFrameGenerated::PopupFrameGenerated( long style ) : wxFrame(parent, id, title, pos, size, style) { this->SetSizeHints( wxDefaultSize, wxDefaultSize ); - this->SetBackgroundColour( wxColour( 255, 255, 255 ) ); + this->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOBK)); wxBoxSizer* bSizer158; bSizer158 = new wxBoxSizer( wxHORIZONTAL ); |