aboutsummaryrefslogtreecommitdiff
path: root/about.cpp
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-01-23 17:57:50 -0500
committerAndrew Lee <alee14498@protonmail.com>2020-01-23 17:57:50 -0500
commit1bd1b2bbcbe33f54c8dfdccdf94b2f862374e1dc (patch)
treecb14c15683ec31cde681c39736683b902f60b1f7 /about.cpp
parentcf631ac6e2848f35f596d0e9f46df2af69810122 (diff)
downloaderable-godot-1bd1b2bbcbe33f54c8dfdccdf94b2f862374e1dc.tar.gz
erable-godot-1bd1b2bbcbe33f54c8dfdccdf94b2f862374e1dc.tar.bz2
erable-godot-1bd1b2bbcbe33f54c8dfdccdf94b2f862374e1dc.zip
Audio progress, flac support, about changed
Diffstat (limited to 'about.cpp')
-rw-r--r--about.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/about.cpp b/about.cpp
index 5bea58a..e3fde67 100644
--- a/about.cpp
+++ b/about.cpp
@@ -6,6 +6,12 @@ About::About(QWidget *parent) :
ui(new Ui::About)
{
ui->setupUi(this);
+
+ ui->label_3->setTextFormat(Qt::RichText);
+
+ ui->label_3->setTextInteractionFlags(Qt::TextBrowserInteraction);
+
+ ui->label_3->setOpenExternalLinks(true);
}
About::~About()