fix: declare loop variable sa as const pointer in t5s3_epaper variant (#11111)

* Initial plan

* fix: declare sa as const pointer in t5s3_epaper variant.cpp

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This commit is contained in:
Copilot
2026-07-20 17:42:47 -05:00
committed by GitHub
co-authored by GitHub copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
parent e061335055
commit 67e2012136
@@ -36,7 +36,7 @@ class TouchInkHUDBridge : public Observer<const InputEvent *>
// Check whether a system applet (e.g. menu) is currently handling input
bool systemHandlingInput = false;
for (NicheGraphics::InkHUD::SystemApplet *sa : inkhud->systemApplets) {
for (const NicheGraphics::InkHUD::SystemApplet *sa : inkhud->systemApplets) {
if (sa->handleInput) {
systemHandlingInput = true;
break;