diff -r cd4eee7f1d28 -r bb5da74c1b3f eric7/WebBrowser/WebBrowserWindow.py --- a/eric7/WebBrowser/WebBrowserWindow.py Thu Jun 10 19:32:22 2021 +0200 +++ b/eric7/WebBrowser/WebBrowserWindow.py Sun Jun 13 19:03:43 2021 +0200 @@ -3460,15 +3460,12 @@ Private slot to manage the QtHelp documentation database. """ if WebBrowserWindow._useQtHelp: - from .QtHelp.QtHelpDocumentationDialog import ( - QtHelpDocumentationDialog + from .QtHelp.QtHelpDocumentationConfigurationDialog import ( + QtHelpDocumentationConfigurationDialog ) - dlg = QtHelpDocumentationDialog(self.__helpEngine, self) + dlg = QtHelpDocumentationConfigurationDialog( + self.__helpEngine, self) dlg.exec() - if dlg.hasDocumentationChanges(): - for i in sorted(dlg.getTabsToClose(), reverse=True): - self.__tabWidget.closeBrowserAt(i) - self.__searchEngine.reindexDocumentation() def getSourceFileList(self): """