1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:37:45 +00:00

Mail: Make Date the first column

This commit is contained in:
Karol Kosek 2023-08-29 15:54:19 +02:00 committed by Andrew Kaster
parent 392fcc0ce6
commit 59968c97f0
3 changed files with 7 additions and 7 deletions

View file

@ -407,7 +407,7 @@ void MailWidget::selected_mailbox()
if (from.is_empty())
from = "(Unknown sender)";
InboxEntry inbox_entry { sequence_number, from, subject, date, seen };
InboxEntry inbox_entry { sequence_number, date, from, subject, seen };
m_statusbar->set_text(String::formatted("[{}]: Loading entry {}", mailbox.name, ++i).release_value_but_fixme_should_propagate_errors());
active_inbox_entries.append(inbox_entry);