A fork of https://github.com/crosspoint-reader/crosspoint-reader
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: Correct instruction text to match actual button text (#672)

## Summary

* Instruction text says "Press OK to scan again" but button label is
actually "Connect" (not OK)
* Corrects instruction text

---

### AI Usage

Did you use AI tools to help write this code? **No**

authored by

Luke Stein and committed by
GitHub
dac11c3f d403044f

+1 -1
+1 -1
src/activities/network/WifiSelectionActivity.cpp
··· 520 520 const auto height = renderer.getLineHeight(UI_10_FONT_ID); 521 521 const auto top = (pageHeight - height) / 2; 522 522 renderer.drawCenteredText(UI_10_FONT_ID, top, "No networks found"); 523 - renderer.drawCenteredText(SMALL_FONT_ID, top + height + 10, "Press OK to scan again"); 523 + renderer.drawCenteredText(SMALL_FONT_ID, top + height + 10, "Press Connect to scan again"); 524 524 } else { 525 525 // Calculate how many networks we can display 526 526 constexpr int startY = 60;