Move home screen battery indicator to avoid clashing with button hints (#174)

## Summary

* Move home screen battery indicator to avoid clashing with button hints
* Default button mapping was fine, but others clashes with the indicator
This commit is contained in:
Dave Allie 2025-12-31 01:46:46 +10:00 committed by GitHub
parent 34cf5f0636
commit 9bba41ed96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -316,7 +316,7 @@ void HomeActivity::render() const {
const auto labels = mappedInput.mapLabels("", "Confirm", "Up", "Down");
renderer.drawButtonHints(UI_10_FONT_ID, labels.btn1, labels.btn2, labels.btn3, labels.btn4);
ScreenComponents::drawBattery(renderer, 20, pageHeight - 30);
ScreenComponents::drawBattery(renderer, 20, pageHeight - 70);
renderer.displayBuffer();
}