diff options
author | Christian Stenger <[email protected]> | 2022-06-03 12:32:39 +0200 |
---|---|---|
committer | Christian Stenger <[email protected]> | 2022-06-03 11:40:37 +0000 |
commit | fe63fb28815b9dd03a60d3e0a07adf95194b95bf (patch) | |
tree | 08fb9ea226bc82d5850442e83f4e405fffde9885 /src/plugins/gitlab/gitlabprojectsettings.cpp | |
parent | bcfa338fff94b53fa23c73a2eb1e992f3c32c3b0 (diff) |
GitLab: Add hint what link to gitlab is for
Change-Id: I5ee32fac4a2a73b3b40438d1697071491c17ac94
Reviewed-by: Leena Miettinen <[email protected]>
Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/gitlab/gitlabprojectsettings.cpp')
-rw-r--r-- | src/plugins/gitlab/gitlabprojectsettings.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/gitlab/gitlabprojectsettings.cpp b/src/plugins/gitlab/gitlabprojectsettings.cpp index e24b4699829..cbd1688f909 100644 --- a/src/plugins/gitlab/gitlabprojectsettings.cpp +++ b/src/plugins/gitlab/gitlabprojectsettings.cpp @@ -159,6 +159,8 @@ GitLabProjectSettingsWidget::GitLabProjectSettingsWidget(ProjectExplorer::Projec horizontalLayout->addWidget(m_checkConnection); horizontalLayout->addStretch(1); verticalLayout->addLayout(horizontalLayout); + verticalLayout->addWidget(new QLabel(tr("Projects linked with GitLab receive event " + "notifications in the Version Control output pane."))); connect(m_linkWithGitLab, &QPushButton::clicked, this, [this]() { checkConnection(Link); |