We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 51b6b53 commit 1433f3cCopy full SHA for 1433f3c
python/plugins/processing/gui/MissingDependencyDialog.py
@@ -39,6 +39,7 @@ def setupUi(self):
39
self.setWindowTitle("Missing dependency")
40
layout = QVBoxLayout()
41
browser = QtGui.QTextBrowser()
42
+ browser.setOpenLinks(False)
43
browser.anchorClicked.connect(self.linkClicked)
44
browser.setHtml(self.msg)
45
button = QPushButton()
@@ -53,7 +54,7 @@ def setupUi(self):
53
54
QtCore.QMetaObject.connectSlotsByName(self)
55
56
def linkClicked(self, url):
- webbrowser.open(str(url))
57
+ webbrowser.open(url.toString())
58
59
def closeButtonPressed(self):
60
self.close()
0 commit comments