Increase network SSID display length

This commit is contained in:
Aaron Cunliffe 2026-02-02 20:50:39 +00:00
parent f67c544e16
commit 1e182ffe86
No known key found for this signature in database
GPG Key ID: F7FC7C83CA99351E

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() > 16) {
displayName.replace(13, displayName.length() - 13, "...");
if (displayName.length() > 33) {
displayName.replace(30, displayName.length() - 30, "...");
}
renderer.drawText(UI_10_FONT_ID, 20, networkY, displayName.c_str());