diff options
-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" |