summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-06-23 01:46:18 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-06-23 01:46:18 +0300
commitcb21433dc84261ea501b917f36d40ef09f256218 (patch)
tree96aeeca1f5751aab920d05559051270495620abc /src
parentFix the appimage generation (diff)
downloadnheko-cb21433dc84261ea501b917f36d40ef09f256218.tar.xz
Allow copying the version info in the settings page
Diffstat (limited to 'src')
-rw-r--r--src/UserSettingsPage.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/UserSettingsPage.cc b/src/UserSettingsPage.cc

index 8bf77533..7354e413 100644 --- a/src/UserSettingsPage.cc +++ b/src/UserSettingsPage.cc
@@ -121,8 +121,8 @@ UserSettingsPage::UserSettingsPage(QSharedPointer<UserSettings> settings, QWidge auto heading_ = new QLabel(tr("User Settings")); heading_->setStyleSheet("font-weight: bold; font-size: 22px;"); - auto versionInfo = new QLabel( - QString("%1 | %2 | %3").arg(nheko::version).arg(nheko::build_user).arg(nheko::build_os)); + auto versionInfo = new QLabel(QString("%1 | %2").arg(nheko::version).arg(nheko::build_os)); + versionInfo->setTextInteractionFlags(Qt::TextBrowserInteraction); topBarLayout_ = new QHBoxLayout; topBarLayout_->setSpacing(0);