comctl32: statusbar: WM_SETFONT should change the bar height.
diff --git a/dlls/comctl32/commctrl.c b/dlls/comctl32/commctrl.c
index 4ff2075..1863dbf 100644
--- a/dlls/comctl32/commctrl.c
+++ b/dlls/comctl32/commctrl.c
@@ -1561,6 +1561,17 @@
return;
}
+void COMCTL32_GetFontMetrics(HFONT hFont, TEXTMETRICW *ptm)
+{
+ HDC hdc = GetDC(NULL);
+ HFONT hOldFont;
+
+ hOldFont = SelectObject(hdc, hFont);
+ GetTextMetricsW(hdc, ptm);
+ SelectObject(hdc, hOldFont);
+ ReleaseDC(NULL, hdc);
+}
+
/***********************************************************************
* MirrorIcon [COMCTL32.414]
*