From 08f3696f21d2ce69623ef01b5765b23d74bebb35 Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 5 Nov 2020 10:27:06 +0100 Subject: [PATCH] ProjectExplorer: Add shortcut to "Configure Project" Note that this does not work with 'Return' immediately, as the focus is usually on the left tree view in that situation. , work. We can try to switch the focus by default in a separate patch if that is wanted. Task-number: QTCREATORBUG-20720 Change-Id: Iffbf7f2c1493947b847fd9c89e86b4de56a65543 Reviewed-by: Christian Kandeler --- src/plugins/projectexplorer/targetsettingspanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/targetsettingspanel.cpp b/src/plugins/projectexplorer/targetsettingspanel.cpp index 5d6970710c0..f34ada1628f 100644 --- a/src/plugins/projectexplorer/targetsettingspanel.cpp +++ b/src/plugins/projectexplorer/targetsettingspanel.cpp @@ -136,7 +136,7 @@ TargetSetupPageWrapper::TargetSetupPageWrapper(Project *project) auto box = new QDialogButtonBox(this); m_configureButton = new QPushButton(this); - m_configureButton->setText(tr("Configure Project")); + m_configureButton->setText(tr("&Configure Project")); box->addButton(m_configureButton, QDialogButtonBox::AcceptRole); auto hbox = new QHBoxLayout;