From 68c1453bc76a272993ad3447ba03391d3d468f7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= Date: Wed, 16 Dec 2009 12:53:55 +0100 Subject: [PATCH] Remove default shortcut from stop action since it conflicts with rename Both rename symbol and stop running had Ctrl+Shift+R as default shortcut, making it impossible to do either when an application was running and the focus was in the text editor. --- src/plugins/projectexplorer/outputwindow.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/plugins/projectexplorer/outputwindow.cpp b/src/plugins/projectexplorer/outputwindow.cpp index 7bacf493365..26767811989 100644 --- a/src/plugins/projectexplorer/outputwindow.cpp +++ b/src/plugins/projectexplorer/outputwindow.cpp @@ -88,7 +88,6 @@ OutputPane::OutputPane() m_stopAction->setEnabled(false); Core::Command *cmd = am->registerAction(m_stopAction, Constants::STOP, globalcontext); - cmd->setDefaultKeySequence(QKeySequence(tr("Ctrl+Shift+R"))); m_stopButton = new QToolButton; m_stopButton->setDefaultAction(cmd->action());