summaryrefslogtreecommitdiff
path: root/entry.py
diff options
context:
space:
mode:
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 ")