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 | f4695b37ed6280782d4d088fdf7a939dfb199756 (patch) | |
tree | adb36957825e96698685ed713f202ddd28dcb352 | |
parent | f52c158655f1c8623b7bd73716606e0ea6a7bfaf (diff) |
Fix entry text selection properties
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | entry.py | 3 | ||||
-rw-r--r-- | globals.py | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1 +1,2 @@ __pycache__ +test.db @@ -20,8 +20,7 @@ class Entry: bullet.setFont(QFont("Arial", 11)) - body.setTextInteractionFlags(Qt.TextSelectableByMouse) - body.setTextInteractionFlags(Qt.LinksAccessibleByMouse) + body.setTextInteractionFlags(Qt.TextSelectableByMouse | Qt.LinksAccessibleByMouse) body.setFont(QFont("Arial", 11)) body.setWordWrap(True) @@ -1,3 +1,3 @@ groups = [] entries = [] -db_path = "/tmp/test.db" +db_path = "./test.db" |