aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/appoutputpane.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2022-02-09 18:00:59 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2022-02-10 12:17:13 +0000
commit400ada2daae9051c7479e7e4818d6b866ad5ed13 (patch)
tree80096722a706f14eae209997410e472dd007a5ca /src/plugins/projectexplorer/appoutputpane.cpp
parent2eef90e86f0f66b6e81c5bab53ea2d3a08f0321a (diff)
ProjectExplorer: Dis-ambiguate issues pane's "show output" action
Amends 08a86169db. Fixes: QTCREATORBUG-27031 Change-Id: Ie6d214673f6c1c52aab1a035c84a7381f9965588 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/appoutputpane.cpp')
-rw-r--r--src/plugins/projectexplorer/appoutputpane.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/appoutputpane.cpp b/src/plugins/projectexplorer/appoutputpane.cpp
index 4920f77157..076fb1c895 100644
--- a/src/plugins/projectexplorer/appoutputpane.cpp
+++ b/src/plugins/projectexplorer/appoutputpane.cpp
@@ -172,7 +172,10 @@ AppOutputPane::AppOutputPane() :
m_attachButton(new QToolButton),
m_settingsButton(new QToolButton),
m_formatterWidget(new QWidget),
- m_handler(new ShowOutputTaskHandler(this))
+ m_handler(new ShowOutputTaskHandler(this,
+ tr("Show &App Output"),
+ tr("Show the output that generated this issue in the application output window"),
+ tr("A")))
{
ExtensionSystem::PluginManager::addObject(m_handler);