Call the onActivate method of the current context after all plugins are initialized.
This commit is contained in:
parent
d19e4ecaab
commit
23d28dff8d
1 changed files with 8 additions and 2 deletions
|
@ -108,8 +108,14 @@ void MainWindow::extensionsInitialized()
|
|||
readSettings();
|
||||
connect(m_contextManager, SIGNAL(currentContextChanged(Core::IContext *)),
|
||||
this, SLOT(updateContext(Core::IContext *)));
|
||||
if (m_contextManager->currentContext() != NULL)
|
||||
updateContext(m_contextManager->currentContext());
|
||||
|
||||
Core::IContext *context = m_contextManager->currentContext();
|
||||
if (context != NULL)
|
||||
{
|
||||
updateContext(context);
|
||||
context->onActivated();
|
||||
}
|
||||
|
||||
show();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue