Module: wine Branch: master Commit: e85f7ed79ea6e74674d92136a0cbb084aafd133f URL: http://source.winehq.org/git/wine.git/?a=commit;h=e85f7ed79ea6e74674d92136a0...
Author: Alexandre Julliard julliard@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);