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:
parent
392fcc0ce6
commit
59968c97f0
3 changed files with 7 additions and 7 deletions
|
@ -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
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue