diff options
author | Louie S <louie@example.com> | 2024-07-21 16:26:03 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-07-21 16:26:03 -0400 |
commit | 3c9183bf9d7e6a95050d84454873a7015f9309e0 (patch) | |
tree | d76f5589205adec563059538bb3e29b95def8df5 /src | |
parent | af0d9e5c0bc8bf153de542fdb0be3193dcd22ec9 (diff) |
Display day of the week for entries
Diffstat (limited to 'src')
-rw-r--r-- | src/entryLayout.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entryLayout.cpp b/src/entryLayout.cpp index ac31f4b..121426e 100644 --- a/src/entryLayout.cpp +++ b/src/entryLayout.cpp @@ -64,7 +64,7 @@ EntryLayout::EntryLayout(const Entry &e) : this->addWidget(bullet); if(!this->entry.due.isNull()) - body->setText(this->entry.due.toString("MM/dd/yyyy: ")); + body->setText(this->entry.due.toString("dddd, MM/dd/yyyy: ")); else if(!this->entry.due_alt.isEmpty()) body->setText(this->entry.due_alt + ": "); |