From a8b2a3443872fb3c349bf0960fe2b33545ff6de4 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Mon, 29 Jun 2020 13:49:36 +0200 Subject: [PATCH] Make project path selectable, issue #354 --- nw/gui/projsettings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nw/gui/projsettings.py b/nw/gui/projsettings.py index 6f8f32ba..b8b47a90 100644 --- a/nw/gui/projsettings.py +++ b/nw/gui/projsettings.py @@ -225,6 +225,8 @@ class GuiProjectEditMeta(QWidget): self.pathLabel.setIndent(xInd) self.pathValue = QLabel(self.theProject.projPath) self.pathValue.setWordWrap(True) + self.pathValue.setTextInteractionFlags(Qt.TextSelectableByMouse) + self.pathValue.setCursor(Qt.IBeamCursor) self.revLabel = QLabel("Revision count:") self.revLabel.setIndent(xInd)