summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-07-21 16:26:03 -0400
committerLouie S <louie@example.com>2024-07-21 16:26:03 -0400
commit3c9183bf9d7e6a95050d84454873a7015f9309e0 (patch)
treed76f5589205adec563059538bb3e29b95def8df5
parentaf0d9e5c0bc8bf153de542fdb0be3193dcd22ec9 (diff)
Display day of the week for entries
-rw-r--r--src/entryLayout.cpp2
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 + ": ");