Fixes: Do not pop up the Application Output if run in the debugger.

Task:     Reported on irc.
Details:  I think this is nicer, while debugging, you probably need
those extra pixels for the other views. We need some flash on the
application button to make it more obvious that something was added to
it.
This commit is contained in:
dt
2009-01-08 16:59:46 +01:00
parent dfa436ef3b
commit cda38c23f1

View File

@@ -1078,7 +1078,8 @@ void ProjectExplorerPlugin::buildQueueFinished(bool success)
RunControl *control = runner->run(m_delayedRunConfiguration, m_runMode);
m_outputPane->createNewOutputWindow(control);
m_outputPane->popup(false);
if (m_runMode == ProjectExplorer::Constants::RUNMODE)
m_outputPane->popup(false);
m_outputPane->showTabFor(control);
connect(control, SIGNAL(addToOutputWindow(RunControl *, const QString &)),