]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/popupwin.cpp
Take src x, y into account when blitting with alpha
[wxWidgets.git] / src / msw / popupwin.cpp
index dcd2272474e8ed0f312bc21f9a8d8bfa9c42e5d0..20f337d99a1392c7d1d16e30bf5053d476d41276 100644 (file)
@@ -38,8 +38,6 @@
 
 #include "wx/msw/private.h"     // for GetDesktopWindow()
 
-IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow, wxWindow)
-
 // ============================================================================
 // implementation
 // ============================================================================
@@ -109,6 +107,9 @@ bool wxPopupWindow::Show(bool show)
         {
             wxLogLastError(_T("SetWindowPos"));
         }
+
+        // and set it as the foreground window so the mouse can be captured
+        ::SetForegroundWindow(GetHwnd());
     }
 
     return true;