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.
This commit is contained in:
Thorbjørn Lindeijer
2009-12-16 12:53:55 +01:00
parent ee3dde9cee
commit 68c1453bc7

View File

@@ -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());