shell32/tests: Wait a bit longer for the explorer window to be created.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2a9f248b67
commit
2d6de2d129
|
@ -166,7 +166,7 @@ static BOOL check_window_exists(const char *name)
|
||||||
|
|
||||||
for (i = 0; i < 20; i++)
|
for (i = 0; i < 20; i++)
|
||||||
{
|
{
|
||||||
Sleep(100);
|
Sleep(100 * i);
|
||||||
if ((window = FindWindowA("ExplorerWClass", title)) ||
|
if ((window = FindWindowA("ExplorerWClass", title)) ||
|
||||||
(window = FindWindowA("CabinetWClass", title)))
|
(window = FindWindowA("CabinetWClass", title)))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue