mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-27 09:36:15 +00:00
Changed: #1206 fixed bug on context update when only core plugin is loaded
This commit is contained in:
parent
fbec2565e9
commit
56cf892b9c
1 changed files with 5 additions and 4 deletions
|
@ -98,10 +98,11 @@ bool MainWindow::initialize(QString *errorString)
|
||||||
|
|
||||||
void MainWindow::extensionsInitialized()
|
void MainWindow::extensionsInitialized()
|
||||||
{
|
{
|
||||||
readSettings();
|
readSettings();
|
||||||
connect(m_contextManager, SIGNAL(currentContextChanged(Core::IContext*)),
|
connect(m_contextManager, SIGNAL(currentContextChanged(Core::IContext*)),
|
||||||
this, SLOT(updateContext(Core::IContext*)));
|
this, SLOT(updateContext(Core::IContext*)));
|
||||||
updateContext(m_contextManager->currentContext());
|
if (m_contextManager->currentContext() != NULL)
|
||||||
|
updateContext(m_contextManager->currentContext());
|
||||||
show();
|
show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue