eric7/WebBrowser/WebBrowserWindow.py

branch
eric7
changeset 8422
bb5da74c1b3f
parent 8421
cd4eee7f1d28
child 8424
777c21b9dbe1
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):
         """

eric ide

mercurial