[MSPAINT] Add ICC_BAR_CLASSES (#4261)

The Fonts toolbar uses toolbar and tooltips. Thus this flag is needed. CORE-17949
This commit is contained in:
Katayama Hirofumi MZ 2022-01-09 23:24:30 +09:00 committed by GitHub
parent 3f053db3e7
commit 17f34887f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -173,7 +173,7 @@ _tWinMain (HINSTANCE hThisInstance, HINSTANCE hPrevInstance, LPTSTR lpszArgument
/* initialize common controls library */
INITCOMMONCONTROLSEX iccx;
iccx.dwSize = sizeof(iccx);
iccx.dwICC = ICC_STANDARD_CLASSES | ICC_USEREX_CLASSES;
iccx.dwICC = ICC_STANDARD_CLASSES | ICC_USEREX_CLASSES | ICC_BAR_CLASSES;
InitCommonControlsEx(&iccx);
LoadString(hThisInstance, IDS_DEFAULTFILENAME, filepathname, _countof(filepathname));