Alexandre Julliard : comctl32: Tooltips should be top-most windows.

Alexandre Julliard julliard at winehq.org
Thu Jan 24 07:20:56 CST 2008


Module: wine
Branch: master
Commit: e85f7ed79ea6e74674d92136a0cbb084aafd133f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e85f7ed79ea6e74674d92136a0cbb084aafd133f

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Jan 23 21:42:33 2008 +0100

comctl32: Tooltips should be top-most windows.

---

 dlls/comctl32/tooltips.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/comctl32/tooltips.c b/dlls/comctl32/tooltips.c
index f976ce9..7661ffa 100644
--- a/dlls/comctl32/tooltips.c
+++ b/dlls/comctl32/tooltips.c
@@ -752,7 +752,7 @@ TOOLTIPS_Show (HWND hwnd, TOOLTIPS_INFO *infoPtr, BOOL track_activate)
          * it is no longer needed */
     }
 
-    SetWindowPos (hwnd, HWND_TOP, rect.left, rect.top,
+    SetWindowPos (hwnd, HWND_TOPMOST, rect.left, rect.top,
 		    rect.right - rect.left, rect.bottom - rect.top,
 		    SWP_SHOWWINDOW | SWP_NOACTIVATE);
 




More information about the wine-cvs mailing list