forked from qt-creator/qt-creator
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:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user