mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
- Remove tailing separator in explorer quicklaunch area.
- Fix some values for rebarband. - See issue #3771 for details. - TODO: fix rebar (comctl32) itself, because it's not working properly. svn path=/trunk/; revision=42881
This commit is contained in:
parent
612682d56c
commit
9e652d5604
2 changed files with 3 additions and 4 deletions
|
@ -147,13 +147,13 @@ LRESULT DesktopBar::Init(LPCREATESTRUCT pcs)
|
|||
rbBand.cyMaxChild = (ULONG)-1;
|
||||
rbBand.cyMinChild = REBARBAND_HEIGHT;
|
||||
rbBand.cyIntegral = REBARBAND_HEIGHT + 3; //@@ OK?
|
||||
rbBand.cxMinChild = rbBand.cyIntegral * 3;
|
||||
rbBand.fStyle = RBBS_VARIABLEHEIGHT|RBBS_GRIPPERALWAYS|RBBS_HIDETITLE;
|
||||
|
||||
TCHAR QuickLaunchBand[] = _T("Quicklaunch");
|
||||
rbBand.lpText = QuickLaunchBand;
|
||||
rbBand.hwndChild = _hwndQuickLaunch;
|
||||
rbBand.cx = 120;
|
||||
rbBand.cx = 100;
|
||||
rbBand.cxMinChild = 100;
|
||||
rbBand.wID = IDW_QUICKLAUNCHBAR;
|
||||
SendMessage(_hwndrebar, RB_INSERTBAND, (WPARAM)-1, (LPARAM)&rbBand);
|
||||
|
||||
|
@ -161,6 +161,7 @@ LRESULT DesktopBar::Init(LPCREATESTRUCT pcs)
|
|||
rbBand.lpText = TaskbarBand;
|
||||
rbBand.hwndChild = _hwndTaskBar;
|
||||
rbBand.cx = 200; //pcs->cx-_taskbar_pos-quicklaunch_width-(notifyarea_width+1);
|
||||
rbBand.cxMinChild = 50;
|
||||
rbBand.wID = IDW_TASKTOOLBAR;
|
||||
SendMessage(_hwndrebar, RB_INSERTBAND, (WPARAM)-1, (LPARAM)&rbBand);
|
||||
#endif
|
||||
|
|
|
@ -154,8 +154,6 @@ void QuickLaunchBar::AddShortcuts()
|
|||
}
|
||||
DeleteDC(hdc);
|
||||
|
||||
SendMessage(_hwnd, TB_INSERTBUTTON, INT_MAX, (LPARAM)&sep);
|
||||
|
||||
for(Entry*entry=_dir->_down; entry; entry=entry->_next) {
|
||||
// hide files like "desktop.ini"
|
||||
if (entry->_data.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN)
|
||||
|
|
Loading…
Reference in a new issue