fix: resolve three reader bugs (confirm eaten, footnotes menu, phantom render)

1. Clear ignoreNextConfirmRelease after transferring state to child
   activity, so the next Confirm press isn't silently consumed.
2. Add conditional FOOTNOTES entry to reader menu when the current
   book has footnotes.
3. Guard clock-minute requestUpdate() with !isReaderActivity() to
   prevent full e-ink re-renders every minute while reading.

Made-with: Cursor
This commit is contained in:
cottongin
2026-03-08 05:56:10 -04:00
parent 1b628a9223
commit 422cad7bc5
3 changed files with 5 additions and 1 deletions

View File

@@ -406,7 +406,7 @@ void loop() {
}
// Refresh screen when the displayed minute changes (clock in header)
if (SETTINGS.clockFormat != CrossPointSettings::CLOCK_OFF) {
if (SETTINGS.clockFormat != CrossPointSettings::CLOCK_OFF && !activityManager.isReaderActivity()) {
static int lastRenderedMinute = -1;
static bool sawInvalidTime = false;
time_t now = time(nullptr);