From e3d0201365b9a3d5bb0b04fc2b65b36b986481a2 Mon Sep 17 00:00:00 2001 From: Brendan O'Leary Date: Sat, 27 Dec 2025 18:36:26 -0500 Subject: [PATCH] Add 'Open' button hint to File Selection page (#136) ## Summary In using my build of https://github.com/daveallie/crosspoint-reader/pull/130 I realized that we need a "open" button hint above the second button in the File browser ## Additional Context * Add any other information that might be helpful for the reviewer (e.g., performance implications, potential risks, specific areas to focus on). --- src/activities/reader/FileSelectionActivity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activities/reader/FileSelectionActivity.cpp b/src/activities/reader/FileSelectionActivity.cpp index 853b06f1..9a1490c5 100644 --- a/src/activities/reader/FileSelectionActivity.cpp +++ b/src/activities/reader/FileSelectionActivity.cpp @@ -162,7 +162,7 @@ void FileSelectionActivity::render() const { renderer.drawCenteredText(READER_FONT_ID, 10, "Books", true, BOLD); // Help text - renderer.drawButtonHints(UI_FONT_ID, "« Home", "", "", ""); + renderer.drawButtonHints(UI_FONT_ID, "« Home", "Open", "", ""); if (files.empty()) { renderer.drawText(UI_FONT_ID, 20, 60, "No EPUBs found");