From 3c9183bf9d7e6a95050d84454873a7015f9309e0 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sun, 21 Jul 2024 16:26:03 -0400 Subject: Display day of the week for entries --- src/entryLayout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 + ": "); -- cgit