From dca6aed44e335f80d6eeb05ea3e830f894f13659 Mon Sep 17 00:00:00 2001 From: altair823 Date: Fri, 1 May 2026 17:28:04 +0900 Subject: [PATCH] docs(tray): restore F4-C identity-signal intent comment The T9 full-file replacement accidentally dropped the inline comment documenting why the count label is conditional on _todayCount > 0 (F4-C UX rationale). No behavior change. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/main/tray.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/tray.ts b/src/main/tray.ts index 3fe0efa..3a1b322 100644 --- a/src/main/tray.ts +++ b/src/main/tray.ts @@ -14,6 +14,7 @@ let _todayCount = 0; function buildMenu() { const items: MenuItemConstructorOptions[] = []; + // F4-C: count > 0 시 비활성 라벨로 정체성 신호 노출. count = 0 시 메뉴를 자연스럽게 시작. if (_todayCount > 0) { items.push({ label: `오늘 ${_todayCount}번 잡아둠`, enabled: false }); items.push({ type: 'separator' });