summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 6a18f76c..b3e78121 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -539,8 +539,6 @@ MainWindow::MainWindow(Settings &settings
processUpdates();
ui->statusBar->updateNormalMessage(m_OrganizerCore);
-
- m_OrganizerCore.userInterfaceInitialized(this);
}
void MainWindow::setupModList()
@@ -1384,6 +1382,9 @@ void MainWindow::showEvent(QShowEvent *event)
m_OrganizerCore.settings().nexus().registerAsNXMHandler(false);
m_WasVisible = true;
updateProblemsButton();
+
+ // Notify plugin that the UI is initialized:
+ m_OrganizerCore.userInterfaceInitialized(this);
}
}