Compare commits

..

1 Commits

Author SHA1 Message Date
Boris Faure
95a8e29cd6
Merge 5ae10a7eb6 into f67c544e16 2026-02-02 21:28:59 +11:00

View File

@ -546,8 +546,8 @@ void WifiSelectionActivity::renderNetworkList() const {
// Draw network name (truncate if too long)
std::string displayName = network.ssid;
if (displayName.length() > 33) {
displayName.replace(30, displayName.length() - 30, "...");
if (displayName.length() > 16) {
displayName.replace(13, displayName.length() - 13, "...");
}
renderer.drawText(UI_10_FONT_ID, 20, networkY, displayName.c_str());