From 02a6a17e28e340f9992c036683f9a37a72609417 Mon Sep 17 00:00:00 2001 From: Sylvain Petreolle Date: Fri, 8 Apr 2011 23:18:20 +0000 Subject: [PATCH] [SNDVOL32] Redraw window with correct size. Window height was growing after changing preferences. svn path=/trunk/; revision=51289 --- reactos/base/applications/sndvol32/dialog.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/reactos/base/applications/sndvol32/dialog.c b/reactos/base/applications/sndvol32/dialog.c index 63b3233b1bf..2b772b00f7c 100644 --- a/reactos/base/applications/sndvol32/dialog.c +++ b/reactos/base/applications/sndvol32/dialog.c @@ -130,11 +130,11 @@ AddDialogControl( } /* now create the window */ - hwnd = CreateWindowExW(DialogItem->dwExtendedStyle, - ClassName, - WindowName, - DialogItem->style, - rect.left, + hwnd = CreateWindowExW(DialogItem->dwExtendedStyle, + ClassName, + WindowName, + DialogItem->style, + rect.left, rect.top, rect.right, rect.bottom, @@ -187,7 +187,7 @@ AddDialogControl( Offset++; } - /* check if there is additional data */ + /* check if there is additional data */ if (*Offset == 0) { /* no additional data */ @@ -323,8 +323,8 @@ LoadDialog( BOOL CALLBACK EnumConnectionsCallback( - PSND_MIXER Mixer, - DWORD LineID, + PSND_MIXER Mixer, + DWORD LineID, LPMIXERLINE Line, PVOID Context) { @@ -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); } } }