diff --git a/src/activities/home/RecentBooksActivity.cpp b/src/activities/home/RecentBooksActivity.cpp index 563e3bdf..07a2143e 100644 --- a/src/activities/home/RecentBooksActivity.cpp +++ b/src/activities/home/RecentBooksActivity.cpp @@ -58,8 +58,7 @@ void RecentBooksActivity::loop() { // Left button: remove selected book from recent list if (!recentBooks.empty() && selectorIndex < recentBooks.size() && - (mappedInput.wasReleased(MappedInputManager::Button::Left) || - mappedInput.wasReleased(MappedInputManager::Button::Up))) { + mappedInput.wasReleased(MappedInputManager::Button::Left)) { const std::string bookPath = recentBooks[selectorIndex].path; const std::string bookTitle = recentBooks[selectorIndex].title;