A fork of https://github.com/crosspoint-reader/crosspoint-reader
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

perf: Removed unused ConfirmationActivity member (#1234)

## Summary

**What is the goal of this PR?**

Small follow up to #909, removing an unused member variable and some
temporary debug logging.

---

### AI Usage

While CrossPoint doesn't have restrictions on AI tools in contributing,
please be transparent about their usage as it
helps set the right context for reviewers.

Did you use AI tools to help write this code? _**NO**_

authored by

Zach Nelson and committed by
GitHub
80d18563 76681201

-3
-1
src/activities/home/MyLibraryActivity.h
··· 11 11 class MyLibraryActivity final : public Activity { 12 12 private: 13 13 // Deletion 14 - bool pendingSubActivityExit = false; 15 14 void clearFileMetadata(const std::string& fullPath); 16 15 17 16 ButtonNavigator buttonNavigator;
-2
src/activities/util/ConfirmationActivity.cpp
··· 28 28 if (!safeHeading.empty() && !safeBody.empty()) totalHeight += spacing; 29 29 30 30 startY = (renderer.getScreenHeight() - totalHeight) / 2; 31 - LOG_DBG("CONF", "startY: %d", startY); 32 - LOG_DBG("CONF", "Heading: %s", safeHeading.c_str()); 33 31 34 32 requestUpdate(true); 35 33 }