From dd25b2f58b0d390c4df3636b03419701bca11b94 Mon Sep 17 00:00:00 2001 From: Win Dictation Dev Date: Thu, 11 Jun 2026 17:27:39 +1200 Subject: [PATCH] Add diagnostic status message when History clicked, show entry count --- src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index d93ac27..7147005 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1071,6 +1071,9 @@ void OnClick(HWND hWnd, WK kind) { ShowSelectPopup(hWnd, ID_SEL_AUDIO, g_audioItems, g_audioSel, g_w[(int)WK::SelAudio].r); break; case WK::History: { + wchar_t dbg[64]; + swprintf_s(dbg, L"History: %d entries", (int)g_history.size()); + SetStatus(hWnd, dbg); std::vector items; for (auto& e : g_history) items.push_back(e.label); if (items.empty()) items.push_back(L"No history yet");