summaryrefslogtreecommitdiff
path: root/entry.py
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2023-09-16 09:36:14 -0400
committerLouie S <louie@example.com>2023-09-16 09:36:14 -0400
commitf52c158655f1c8623b7bd73716606e0ea6a7bfaf (patch)
tree5365780295c80b904ed69d7ace2f0fc45dbd30d2 /entry.py
parent12f840536275ccebe2f382fb1ca40019b16b10f6 (diff)
Button toggling
Diffstat (limited to 'entry.py')
-rw-r--r--entry.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/entry.py b/entry.py
index 84af97d..ba393b7 100644
--- a/entry.py
+++ b/entry.py
@@ -18,11 +18,12 @@ class Entry:
bullet = QLabel()
body = QLabel()
+ bullet.setFont(QFont("Arial", 11))
+
body.setTextInteractionFlags(Qt.TextSelectableByMouse)
body.setTextInteractionFlags(Qt.LinksAccessibleByMouse)
-
- bullet.setFont(QFont("Arial", 11))
body.setFont(QFont("Arial", 11))
+ body.setWordWrap(True)
if self.done:
bullet.setText("\u2713 ")