From 2b07dff4dae1d86cb0aa95eaf9c5dae1dc787675 Mon Sep 17 00:00:00 2001 From: Matthias Kupfer Date: Fri, 20 Feb 2009 11:12:47 +0000 Subject: [PATCH] parent window hight doesn't affect status window hight svn path=/trunk/; revision=39691 --- reactos/base/applications/taskmgr/taskmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/applications/taskmgr/taskmgr.c b/reactos/base/applications/taskmgr/taskmgr.c index 75fcb61dcf8..05a00f2ac2d 100644 --- a/reactos/base/applications/taskmgr/taskmgr.c +++ b/reactos/base/applications/taskmgr/taskmgr.c @@ -630,7 +630,7 @@ void OnSize( WPARAM nType, int cx, int cy ) /* Update the status bar size */ GetWindowRect(hStatusWnd, &rc); - SendMessageW(hStatusWnd, WM_SIZE, nType, MAKELPARAM(cx, cy + (rc.bottom - rc.top))); + SendMessageW(hStatusWnd, WM_SIZE, nType, MAKELPARAM(cx,rc.bottom - rc.top)); /* Update the status bar pane sizes */ nParts[0] = bInMenuLoop ? -1 : 100;