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");