Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2020-09-04 22:57:07 +0300
committerGitHub <noreply@github.com>2020-09-04 22:57:07 +0300
commitf3c945d8d67e89c97bdfbba201666fd2ce3acb20 (patch)
tree1f300eaac74d2c1a1ac9e211d993327325ddd0f0
parent5b87bd3cdc60645b860041fc3e4d10f4bef8eb33 (diff)
parentff93cce54c12d752f9cc1bc2675ac6d42b5de32e (diff)
Merge pull request #4458: Backport "FIX(client): Make link in about dialog clickable again"
Backport of #4454
-rw-r--r--src/mumble/About.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mumble/About.cpp b/src/mumble/About.cpp
index 23de1e028..e5101aa59 100644
--- a/src/mumble/About.cpp
+++ b/src/mumble/About.cpp
@@ -47,7 +47,7 @@ AboutDialog::AboutDialog(QWidget *p) : QDialog(p) {
icon->setPixmap(g.mw->qiIcon.pixmap(g.mw->qiIcon.actualSize(QSize(128, 128))));
QLabel *text = new QLabel(about);
- text->setTextInteractionFlags(Qt::TextSelectableByMouse);
+ text->setTextInteractionFlags(Qt::TextBrowserInteraction);
text->setOpenExternalLinks(true);
text->setText(tr(
"<h3>Mumble (%1)</h3>"