1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:07: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

@ -12,9 +12,9 @@
struct InboxEntry {
u32 sequence_number;
DeprecatedString date;
DeprecatedString from;
DeprecatedString subject;
DeprecatedString date;
bool seen;
};
@ -26,9 +26,9 @@ enum class InboxModelCustomRole {
class InboxModel final : public GUI::Model {
public:
enum Column {
Date,
From,
Subject,
Date,
__Count
};