The default image layout is HORIZONTAL, not VERTICAL.

This commit is contained in:
Frank Richter 2005-08-03 19:13:01 +00:00 committed by Alexandre Julliard
parent 5e787ba521
commit 30fffdaef0
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ static PTHEME_PROPERTY UXTHEME_SelectImage(HTHEME hTheme, HDC hdc, int iPartId,
static HRESULT UXTHEME_LoadImage(HTHEME hTheme, HDC hdc, int iPartId, int iStateId, const RECT *pRect, BOOL glyph,
HBITMAP *hBmp, RECT *bmpRect)
{
int imagelayout = IL_VERTICAL;
int imagelayout = IL_HORIZONTAL;
int imagecount = 1;
BITMAP bmp;
WCHAR szPath[MAX_PATH];