uxtheme: Initialize system metrics in 96 DPI.

Similar to 7290db3.

Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zhiyi Zhang 2021-09-22 10:23:38 +08:00 committed by Alexandre Julliard
parent af48d90a6f
commit cd99d08a74
1 changed files with 6 additions and 0 deletions

View File

@ -733,12 +733,18 @@ struct PARSENONCLIENTSTATE
static inline void parse_init_nonclient (struct PARSENONCLIENTSTATE* state)
{
DPI_AWARENESS_CONTEXT old_context;
old_context = SetThreadDpiAwarenessContext(DPI_AWARENESS_CONTEXT_UNAWARE);
memset (state, 0, sizeof (*state));
state->metrics.cbSize = sizeof (NONCLIENTMETRICSW);
SystemParametersInfoW (SPI_GETNONCLIENTMETRICS, sizeof (NONCLIENTMETRICSW),
&state->metrics, 0);
SystemParametersInfoW (SPI_GETICONTITLELOGFONT, sizeof (LOGFONTW),
&state->iconTitleFont, 0);
SetThreadDpiAwarenessContext(old_context);
}
static BOOL parse_handle_nonclient_font (struct PARSENONCLIENTSTATE* state,