mirror of
https://github.com/MarekZegare4/MeshCore-Solo.git
synced 2026-07-30 16:58:12 +00:00
fix: add missing space after Type: and Seen: labels in NearbyScreen detail view
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -228,12 +228,12 @@ public:
|
|||||||
display.setCursor(2, 38); display.print("Az: unknown");
|
display.setCursor(2, 38); display.print("Az: unknown");
|
||||||
}
|
}
|
||||||
|
|
||||||
snprintf(buf, sizeof(buf), "Type:%s", typeName(e.type));
|
snprintf(buf, sizeof(buf), "Type: %s", typeName(e.type));
|
||||||
display.setCursor(2, 47); display.print(buf);
|
display.setCursor(2, 47); display.print(buf);
|
||||||
|
|
||||||
char age[16];
|
char age[16];
|
||||||
fmtAge(age, sizeof(age), e.lastmod);
|
fmtAge(age, sizeof(age), e.lastmod);
|
||||||
snprintf(buf, sizeof(buf), "Seen:%s", age);
|
snprintf(buf, sizeof(buf), "Seen: %s", age);
|
||||||
display.setCursor(2, 56); display.print(buf);
|
display.setCursor(2, 56); display.print(buf);
|
||||||
|
|
||||||
return 2000;
|
return 2000;
|
||||||
|
|||||||
Reference in New Issue
Block a user