[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:
Jose Carlos Jesus 2022-04-29 13:00:52 +01:00 committed by GitHub
parent f111d4a703
commit 3b496432a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,