diff --git a/src/plugins/projectexplorer/appoutputpane.cpp b/src/plugins/projectexplorer/appoutputpane.cpp index ec9a0e370c6..554c181a48f 100644 --- a/src/plugins/projectexplorer/appoutputpane.cpp +++ b/src/plugins/projectexplorer/appoutputpane.cpp @@ -176,10 +176,11 @@ AppOutputPane::AppOutputPane() : // Stop m_stopAction->setIcon(Utils::Icons::STOP_SMALL_TOOLBAR.icon()); - m_stopAction->setToolTip(tr("Stop")); + m_stopAction->setToolTip(tr("Stop Running Program")); m_stopAction->setEnabled(false); Core::Command *cmd = Core::ActionManager::registerAction(m_stopAction, Constants::STOP); + cmd->setDescription(m_stopAction->toolTip()); m_stopButton->setDefaultAction(cmd->action()); m_stopButton->setAutoRaise(true);