mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 14:08:22 +00:00
[SNDVOL32]
Redraw window with correct size. Window height was growing after changing preferences. svn path=/trunk/; revision=51289
This commit is contained in:
parent
6d9847ecb3
commit
02a6a17e28
1 changed files with 9 additions and 9 deletions
|
@ -439,7 +439,7 @@ EnumConnectionsCallback(
|
|||
GetWindowRect(PrefContext->MixerWindow->hWnd, &rect);
|
||||
|
||||
/* now move the window */
|
||||
MoveWindow(PrefContext->MixerWindow->hWnd, rect.left, rect.top, (PrefContext->Count * DIALOG_VOLUME_SIZE), rect.bottom, TRUE);
|
||||
MoveWindow(PrefContext->MixerWindow->hWnd, rect.left, rect.top, (PrefContext->Count * DIALOG_VOLUME_SIZE), rect.bottom - rect.top, TRUE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue