mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 18:40:02 +01:00
Fix Tooltip from minimized clients
Bug #3678 (Colin Harrison)
(cherry picked from 27d4b84f26 commit)
This commit is contained in:
parent
a092419fe7
commit
1587946f87
1 changed files with 3 additions and 4 deletions
|
|
@ -982,11 +982,10 @@ winAdjustXWindow (WindowPtr pWin, HWND hwnd)
|
|||
/*
|
||||
* If the Windows window is minimized, its WindowRect has
|
||||
* meaningless values so we don't adjust X window to it.
|
||||
* Instead we put the X window to the bottom in Z order to
|
||||
* be obscured by other windows.
|
||||
*/
|
||||
vlist[0] = Below;
|
||||
return ConfigureWindow (pWin, CWStackMode, vlist, wClient(pWin));
|
||||
vlist[0] = 0;
|
||||
vlist[1] = 0;
|
||||
return ConfigureWindow (pWin, CWX | CWY, vlist, wClient(pWin));
|
||||
}
|
||||
|
||||
pDraw = &pWin->drawable;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue