FIx missing button frame for reveal button

This commit is contained in:
jpirnay
2026-04-12 23:27:17 +02:00
parent 32df69ea80
commit bb9687d585
3 changed files with 5 additions and 4 deletions
@@ -311,7 +311,7 @@ void KeyboardEntryActivity::render(RenderLock&&) {
bottomKeys.push_back({KeyboardKeyType::Shift, symMode ? shiftString[0] : shiftString[shiftState]});
bottomKeys.push_back({KeyboardKeyType::Mode, symMode ? "abc" : "#@!"});
if (isPassword) {
bottomKeys.push_back({KeyboardKeyType::Normal, passwordVisible ? tr(STR_HIDE) : tr(STR_SHOW)});
bottomKeys.push_back({KeyboardKeyType::Reveal, passwordVisible ? tr(STR_HIDE) : tr(STR_SHOW)});
}
bottomKeys.push_back({KeyboardKeyType::Space, nullptr});
bottomKeys.push_back({KeyboardKeyType::Del, nullptr});