From 4b6830859be464f7fda1132b8d0876362311486f Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Sat, 4 Oct 2008 16:47:41 +0000 Subject: [PATCH] change quicklaunch rebar hardcoded size. This puts the gripper for the taskbar in the correct position svn path=/trunk/; revision=36646 --- reactos/base/shell/explorer/taskbar/desktopbar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/shell/explorer/taskbar/desktopbar.cpp b/reactos/base/shell/explorer/taskbar/desktopbar.cpp index d5eacd87e3f..307c65b7eef 100644 --- a/reactos/base/shell/explorer/taskbar/desktopbar.cpp +++ b/reactos/base/shell/explorer/taskbar/desktopbar.cpp @@ -153,7 +153,7 @@ LRESULT DesktopBar::Init(LPCREATESTRUCT pcs) TCHAR QuickLaunchBand[] = _T("Quicklaunch"); rbBand.lpText = QuickLaunchBand; rbBand.hwndChild = _hwndQuickLaunch; - rbBand.cx = 250; + rbBand.cx = 120; rbBand.wID = IDW_QUICKLAUNCHBAR; SendMessage(_hwndrebar, RB_INSERTBAND, (WPARAM)-1, (LPARAM)&rbBand);