mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Redraw shell background when wallpaper is changed
svn path=/trunk/; revision=13464
This commit is contained in:
parent
e2de4723c6
commit
ead52a2278
1 changed files with 2 additions and 2 deletions
|
@ -177,7 +177,7 @@ SystemParametersInfoA(UINT uiAction,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
RedrawWindow(GetDesktopWindow(), NULL, NULL, RDW_INVALIDATE | RDW_UPDATENOW);
|
RedrawWindow(GetShellWindow(), NULL, NULL, RDW_INVALIDATE | RDW_ERASE);
|
||||||
|
|
||||||
return Ret;
|
return Ret;
|
||||||
}
|
}
|
||||||
|
@ -280,7 +280,7 @@ SystemParametersInfoW(UINT uiAction,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
RedrawWindow(GetDesktopWindow(), NULL, NULL, RDW_INVALIDATE | RDW_UPDATENOW);
|
RedrawWindow(GetShellWindow(), NULL, NULL, RDW_INVALIDATE | RDW_ERASE);
|
||||||
|
|
||||||
return Ret;
|
return Ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue