Add info string to list

This commit is contained in:
jpirnay
2026-05-15 21:07:58 +02:00
parent 2cac554b0f
commit 1a6ddc4eda
@@ -344,6 +344,14 @@ void RecentBooksActivity::renderListView(RenderLock&&) {
[this](int index) { return UITheme::getFileIcon(recentBooks[index].path); }); [this](int index) { return UITheme::getFileIcon(recentBooks[index].path); });
} }
if (!gpio.deviceIsX3()) {
const int hintY = contentRect.y + contentRect.height - metrics.verticalSpacing - 14;
const std::string hint = std::string(tr(STR_DIR_UP)) + "+L: " + tr(STR_VIEW_GRID) + "/" + tr(STR_VIEW_LIST) +
" " + tr(STR_DIR_LEFT) + "+L: " + tr(STR_REMOVE) + " " + tr(STR_DIR_RIGHT) +
"+L: " + tr(STR_INFO);
renderer.drawText(SMALL_FONT_ID, contentRect.x + metrics.contentSidePadding, hintY, hint.c_str());
}
const bool hasBooks = !recentBooks.empty(); const bool hasBooks = !recentBooks.empty();
const auto labels = mappedInput.mapLabels(tr(STR_HOME), hasBooks ? tr(STR_OPEN) : "", "", ""); const auto labels = mappedInput.mapLabels(tr(STR_HOME), hasBooks ? tr(STR_OPEN) : "", "", "");
GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4);