From b500bba6af2e238d2b74288156ca613d6a34090d Mon Sep 17 00:00:00 2001 From: David Schulz Date: Wed, 24 Jan 2018 14:14:44 +0100 Subject: [PATCH] Help: call setupData after setting the collection fileData Setting the collection file leaves the help engine in an invalid state. It is important to invoke setupData() in order to setup the help engine again. Change-Id: I252d7999c113db4f584bcaf94d42c609f507c1cb Reviewed-by: Eike Ziller --- src/plugins/help/localhelpmanager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/help/localhelpmanager.cpp b/src/plugins/help/localhelpmanager.cpp index 5e13d10b3e6..daeaf5eb561 100644 --- a/src/plugins/help/localhelpmanager.cpp +++ b/src/plugins/help/localhelpmanager.cpp @@ -287,6 +287,7 @@ void LocalHelpManager::setupGuiHelpEngine() if (m_needsCollectionFile) { m_needsCollectionFile = false; helpEngine().setCollectionFile(Core::HelpManager::collectionFilePath()); + m_guiNeedsSetup = true; } if (m_guiNeedsSetup) {