Skip to content
Snippets Groups Projects
Commit 40bee2c4 authored by Alexander Nicolaysen Sørnes's avatar Alexander Nicolaysen Sørnes Committed by Alexandre Julliard
Browse files

wordpad: Set default font effects to 0.

parent b081cbaf
No related branches found
No related tags found
No related merge requests found
......@@ -319,7 +319,8 @@ static void DoDefaultFont(void)
ZeroMemory(&fmt, sizeof(fmt));
fmt.cbSize = sizeof(fmt);
fmt.dwMask = CFM_FACE;
fmt.dwMask = CFM_FACE | CFM_BOLD | CFM_ITALIC | CFM_UNDERLINE;
fmt.dwEffects = 0;
lstrcpyW(fmt.szFaceName, szFaceName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment