fix: reverse fullscreen message nav order and remove channel # prefix

- Swap left/right navigation in fullscreen view: left=newer, right=older
- Update arrow indicators to match new direction
- Remove # prefix from channel name in message and compose view titles

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jakub
2026-05-14 20:21:13 +02:00
co-authored by Claude Sonnet 4.6
parent 1fcad7776a
commit c86e6c803e
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -1203,7 +1203,7 @@ public:
ChannelDetails ch;
the_mesh.getChannel(_sel_channel_idx, ch);
char title[24];
snprintf(title, sizeof(title), "#%.21s", ch.name);
snprintf(title, sizeof(title), "%.23s", ch.name);
display.drawTextCentered(display.width()/2, 0, title);
display.fillRect(0, 9, display.width(), 1);
@@ -1289,7 +1289,7 @@ public:
if (_sending_to_channel) {
ChannelDetails ch;
the_mesh.getChannel(_sel_channel_idx, ch);
snprintf(title, sizeof(title), "#%.21s", ch.name);
snprintf(title, sizeof(title), "%.23s", ch.name);
} else {
snprintf(title, sizeof(title), "TO:%.14s", _sel_contact.name);
}