mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[win32k]
- Fix IntGetScrollBarRect when WS_EX_LEFTSCROLLBAR style is used - Spotted by vicmarcal svn path=/trunk/; revision=58714
This commit is contained in:
parent
3a238b5936
commit
30f64b59ea
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ IntGetScrollBarRect (PWND Wnd, INT nBar, RECTL *lprect)
|
|||
case SB_VERT:
|
||||
if(Wnd->ExStyle & WS_EX_LEFTSCROLLBAR)
|
||||
{
|
||||
lprect->right = lprect->right;;
|
||||
lprect->right = lprect->left;
|
||||
lprect->left -= UserGetSystemMetrics(SM_CXVSCROLL);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue