mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[COMCTL32] -Fix a typo.
svn path=/trunk/; revision=75502
This commit is contained in:
parent
5bef76033f
commit
f33a6d3c88
1 changed files with 1 additions and 1 deletions
|
@ -410,7 +410,7 @@ BOOL BUTTON_DrawIml(HDC hDC, BUTTON_IMAGELIST *pimlData, RECT *prc, BOOL bOnlyCa
|
||||||
{
|
{
|
||||||
left = prc->left + pimlData->margin.left;
|
left = prc->left + pimlData->margin.left;
|
||||||
top = prc->top + (prc->bottom - prc->top - ImageSize.cy) / 2;
|
top = prc->top + (prc->bottom - prc->top - ImageSize.cy) / 2;
|
||||||
prc->left += left + pimlData->margin.right + ImageSize.cx;
|
prc->left = left + pimlData->margin.right + ImageSize.cx;
|
||||||
}
|
}
|
||||||
else if (pimlData->uAlign == BUTTON_IMAGELIST_ALIGN_RIGHT)
|
else if (pimlData->uAlign == BUTTON_IMAGELIST_ALIGN_RIGHT)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue