1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:57:44 +00:00

Mail: Draw unread messages as bold

This commit is contained in:
Karol Kosek 2023-07-11 19:18:26 +02:00 committed by Sam Atkins
parent 411ffb7954
commit 619b53eaca
3 changed files with 12 additions and 1 deletions

View file

@ -14,6 +14,7 @@ struct InboxEntry {
DeprecatedString from;
DeprecatedString subject;
DeprecatedString date;
bool seen;
};
class InboxModel final : public GUI::Model {