From 5a22875a72ed12e411487143e69348ffd50ef03a Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Wed, 17 Feb 2016 15:24:38 +0100 Subject: [PATCH] ui: Added links to about window --- src/lib_gui/qt/window/QtAbout.cpp | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/lib_gui/qt/window/QtAbout.cpp b/src/lib_gui/qt/window/QtAbout.cpp index 4aaaee54..7aff1d99 100644 --- a/src/lib_gui/qt/window/QtAbout.cpp +++ b/src/lib_gui/qt/window/QtAbout.cpp @@ -88,14 +88,16 @@ void QtAbout::setup() windowLayout->addWidget(acknowledgementsTitle); QLabel* acknowledgementsLabel = new QLabel( - "Coati 0.1 was created in the context of education at the\n" - "University of Applied Sciences Salzburg.\n" - "Coati Software OG takes part in the Startup Salzburg initiative.\n" - "The development of Coati is funded by aws.\n", + "Coati 0.1 was created in the context of education at
" + "Salzburg University of Applied Sciences.
" + "Coati Software OG takes part in the Startup Salzburg initiative.
" + "The development of Coati is funded by aws.", this ); + acknowledgementsLabel->setOpenExternalLinks(true); windowLayout->addWidget(acknowledgementsLabel); + windowLayout->addStretch(); { QHBoxLayout* row = new QHBoxLayout(); @@ -106,8 +108,10 @@ void QtAbout::setup() "Schlossallee 7/1
" "5412 Puch bei Hallein
" "Austria
" - "support@coati.io", + "support@coati.io
" + "coati.io", this); + companyLabel->setOpenExternalLinks(true); row->addWidget(companyLabel); {