From f4695b37ed6280782d4d088fdf7a939dfb199756 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sat, 16 Sep 2023 09:36:14 -0400 Subject: Fix entry text selection properties --- entry.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'entry.py') diff --git a/entry.py b/entry.py index ba393b7..b51f38d 100644 --- a/entry.py +++ b/entry.py @@ -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) -- cgit