Commit 3b9ac1b1 authored by Mark Harmstone's avatar Mark Harmstone Committed by Alexandre Julliard

winecfg: Invalidate property sheet when font changed.

When you changed the font on the Desktop Integration tab, it wasn't enabling the Apply button.
parent 853d4343
...@@ -1166,7 +1166,8 @@ static void on_select_font(HWND hDlg) ...@@ -1166,7 +1166,8 @@ static void on_select_font(HWND hDlg)
cf.lpLogFont = &(metrics[index].lf); cf.lpLogFont = &(metrics[index].lf);
cf.Flags = CF_SCREENFONTS | CF_INITTOLOGFONTSTRUCT | CF_NOSCRIPTSEL | CF_NOVERTFONTS; cf.Flags = CF_SCREENFONTS | CF_INITTOLOGFONTSTRUCT | CF_NOSCRIPTSEL | CF_NOVERTFONTS;
ChooseFontW(&cf); if (ChooseFontW(&cf))
SendMessageW(GetParent(hDlg), PSM_CHANGED, 0, 0);
} }
INT_PTR CALLBACK INT_PTR CALLBACK
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment