diff options
author | Louie S <louie@example.com> | 2023-09-16 09:36:14 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-09-16 09:36:14 -0400 |
commit | 8650e59af3ecc0d77615f1f4fd2a8b78db6232d0 (patch) | |
tree | ec810e1d0d3eb61d7faa764d3a4a1d17843e7714 /src | |
parent | 604b485fab100785c4def10dc7242e6408e1f1c6 (diff) |
fix alt_due_date not drawing
Diffstat (limited to 'src')
-rw-r--r-- | src/entry.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/entry.py b/src/entry.py index addc96a..2a50cfd 100644 --- a/src/entry.py +++ b/src/entry.py @@ -1,4 +1,4 @@ -from datetime import date, datetime +from datetime import date from PyQt5.QtCore import Qt from PyQt5.QtGui import QFont from PyQt5.QtWidgets import QHBoxLayout, QLabel @@ -45,6 +45,10 @@ class Entry: self.due.day(), self.due.year() )) + elif self.due_alt: + body.setText("{0}: ".format( + self.due_alt + )) if self.link: body.setOpenExternalLinks(True) body.setText(body.text() + "<a href=\"{0}\" style=\"color: {1};\">".format( |