Make sure on first start the IDE becomes the active window.

This commit is contained in:
kh1
2010-08-02 16:18:09 +02:00
parent cbf31293cb
commit 00783d2fbd

View File

@@ -601,9 +601,12 @@ void HelpPlugin::slotHideRightPane()
void HelpPlugin::showExternalWindow()
{
bool firstTime = m_firstModeChange;
setup();
m_externalWindow->show();
m_externalWindow->activateWindow();
if (firstTime)
Core::ICore::instance()->mainWindow()->activateWindow();
}
void HelpPlugin::modeChanged(Core::IMode *mode, Core::IMode *old)