Step 181: enhanced status bar

This commit is contained in:
Bill
2026-02-09 22:40:26 -07:00
parent a1d8f00f2c
commit e05f83812c
7 changed files with 181 additions and 56 deletions

View File

@@ -94,6 +94,11 @@ public:
return history;
}
const Notification* latest() const {
if (history.empty()) return nullptr;
return &history.back();
}
void renderToasts(const std::function<void(const Notification&)>& onNavigate = {},
bool reduceMotion = false) {
const double now = ImGui::GetTime();