mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
uxtheme: Use OpenThemeDataForDpi() to create a theme handle not associated to a window.
If a window is not passed to OpenThemeData(), OpenThemeData() assumes the DPI is 96 according to tests. And GetThemePartSize() should select theme parts according to the DPI stored in theme handles rather than using GDI device contexts. Thus, OpenThemeDataForDpi() should be used in place of OpenThemeData() when DPI is not 96 and theme handles shouldn't be associated with a window. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7be103bba9
commit
8aed2ec3b9
1 changed files with 5 additions and 1 deletions
|
@ -41,7 +41,11 @@ void WINAPI UXTHEME_ScrollBarDraw(HWND hwnd, HDC dc, INT bar, enum SCROLL_HITTES
|
|||
HTHEME theme;
|
||||
DWORD style;
|
||||
|
||||
theme = bar == SB_CTL ? GetWindowTheme(hwnd) : OpenThemeData(NULL, WC_SCROLLBARW);
|
||||
if (bar == SB_CTL)
|
||||
theme = GetWindowTheme(hwnd);
|
||||
else
|
||||
theme = OpenThemeDataForDpi(NULL, WC_SCROLLBARW, GetDpiForWindow(hwnd));
|
||||
|
||||
if (!theme)
|
||||
{
|
||||
user_api.pScrollBarDraw(hwnd, dc, bar, hit_test, tracking_info, draw_arrows, draw_interior,
|
||||
|
|
Loading…
Reference in a new issue