[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:
Giannis Adamopoulos
2018-01-29 22:32:17 +02:00
parent d11e7af5f2
commit 556c485c8b

View File

@@ -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;
}
}