Output window: Revert 1d7cb01f64.

It was a quick fix for 2.1, but we want a real solution.
(See QTCREATORBUG-3073.)
This commit is contained in:
Christian Kandeler
2010-11-18 17:52:25 +01:00
parent bdc0e29241
commit 81b7e73501

View File

@@ -390,7 +390,7 @@ void OutputPane::tabChanged(int i)
RunControl *rc = m_runControlTabs.at(index).runControl;
m_stopAction->setEnabled(rc->isRunning());
m_reRunButton->setEnabled(!rc->isRunning() && rc->runMode() == Constants::RUNMODE);
m_reRunButton->setEnabled(!rc->isRunning());
m_reRunButton->setIcon(m_runIcon);
}
}
@@ -420,7 +420,7 @@ void OutputPane::runControlFinished()
<< " current " << current << m_runControlTabs.size();
if (current && current == sender()) {
m_reRunButton->setEnabled(current->runMode() == Constants::RUNMODE);
m_reRunButton->setEnabled(true);
m_stopAction->setEnabled(false);
m_reRunButton->setIcon(m_runIcon);
}