comctl32: Tooltips should be top-most windows.

This commit is contained in:
Alexandre Julliard 2008-01-23 21:42:33 +01:00
parent cbdf1294e6
commit e85f7ed79e
1 changed files with 1 additions and 1 deletions

View File

@ -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);