Let property sheets update the cached system colors upon receiving
WM_SYSCOLORCHANGE.
This commit is contained in:
parent
72d6a98469
commit
c81d46d77f
|
@ -3474,6 +3474,10 @@ PROPSHEET_DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
case WM_SYSCOLORCHANGE:
|
||||
COMCTL32_RefreshSysColors();
|
||||
return FALSE;
|
||||
|
||||
case PSM_GETCURRENTPAGEHWND:
|
||||
{
|
||||
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
|
||||
|
|
Loading…
Reference in New Issue