X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0c589ad076cb531a3ef7808aaedadc03c8286942..babd4308f2704f4234e271d29a8e8c1e211b4af6:/src/msw/dcscreen.cpp diff --git a/src/msw/dcscreen.cpp b/src/msw/dcscreen.cpp index 64c6908cfd..65f897ccf3 100644 --- a/src/msw/dcscreen.cpp +++ b/src/msw/dcscreen.cpp @@ -23,9 +23,10 @@ #ifndef WX_PRECOMP #include "wx/string.h" #include "wx/window.h" - #include "wx/msw/private.h" #endif +#include "wx/msw/private.h" + #include "wx/dcscreen.h" @@ -38,6 +39,11 @@ wxScreenDC::wxScreenDC(void) { m_hDC = (WXHDC) ::GetDC((HWND) NULL); m_hDCCount ++; + + // the background mode is only used for text background + // and is set in DrawText() to OPAQUE as required, other- + // wise always TRANSPARENT, RR + ::SetBkMode( GetHdc(), TRANSPARENT ); } wxScreenDC::~wxScreenDC(void)