mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[NEWDEV] Fix Update Driver wizard dialog position (#4274)
The Update Driver wizard dialog was not completely visible. A part of the window was off the screen. As in Windows XP the dialog box is positioned slightly below and to the right of the parent window (Z-order).
This commit is contained in:
parent
f111d4a703
commit
3b496432a8
1 changed files with 8 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* New device installer (newdev.dll)
|
||||
*
|
||||
* Copyright 2006 Hervé Poussineau (hpoussin@reactos.org)
|
||||
* Copyright 2006 Hervé Poussineau (hpoussin@reactos.org)
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -42,6 +42,13 @@ CenterWindow(
|
|||
GetWindowRect(hWndParent, &rcParent);
|
||||
GetWindowRect(hWnd, &rcWindow);
|
||||
|
||||
/* Check if the child window fits inside the parent window */
|
||||
if (rcWindow.left < rcParent.left || rcWindow.top < rcParent.top ||
|
||||
rcWindow.right > rcParent.right || rcWindow.bottom > rcParent.bottom)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
SetWindowPos(
|
||||
hWnd,
|
||||
HWND_TOP,
|
||||
|
|
Loading…
Reference in a new issue