mirror of
https://github.com/reactos/reactos.git
synced 2026-06-05 19:43:39 +08:00
[EXPLORER] Improve the width of the taskbar clock
Don't take into account TRAY_CLOCK_WND_SPACING_X twice Increase TRAY_CLOCK_WND_SPACING_X
This commit is contained in:
@@ -146,7 +146,7 @@ const WCHAR szTrayClockWndClass[] = L"TrayClockWClass";
|
||||
#define ID_TRAYCLOCK_TIMER 0
|
||||
#define ID_TRAYCLOCK_TIMER_INIT 1
|
||||
|
||||
#define TRAY_CLOCK_WND_SPACING_X 3
|
||||
#define TRAY_CLOCK_WND_SPACING_X 6
|
||||
#define TRAY_CLOCK_WND_SPACING_Y 0
|
||||
|
||||
CTrayClockWnd::CTrayClockWnd() :
|
||||
@@ -307,8 +307,8 @@ WORD CTrayClockWnd::GetMinimumSize(IN BOOL Horizontal, IN OUT PSIZE pSize)
|
||||
|
||||
/* Increase maximum rectangle */
|
||||
szMax.cy += LineSizes[i].cy;
|
||||
if (LineSizes[i].cx > szMax.cx - (2 * TRAY_CLOCK_WND_SPACING_X))
|
||||
szMax.cx = LineSizes[i].cx + (2 * TRAY_CLOCK_WND_SPACING_X);
|
||||
if (LineSizes[i].cx > szMax.cx)
|
||||
szMax.cx = LineSizes[i].cx;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user