--- a/src/eric7/Preferences/__init__.py Thu Nov 24 16:11:55 2022 +0100 +++ b/src/eric7/Preferences/__init__.py Thu Nov 24 16:21:10 2022 +0100 @@ -51,7 +51,6 @@ from eric7.EricWidgets import EricFileDialog from eric7.EricWidgets.EricApplication import ericApp from eric7.EricWidgets.EricIconBar import EricIconBar - from eric7.QScintilla.Shell import ShellHistoryStyle from eric7.Utilities.crypto import pwConvert from eric7.Utilities.crypto.py3PBKDF2 import hashPassword @@ -741,7 +740,6 @@ "AutoExecuteMake": False, "AutoLoadDbgProperties": False, "AutoSaveDbgProperties": False, - ##"HideGeneratedForms": False, "FollowEditor": True, "FollowCursorLine": True, "AutoPopulateItems": True, @@ -767,52 +765,99 @@ # defaults for the project browser lists settings projectBrowsersDefaults = { "allBrowsers": ( - "sources", "forms", "resources", "translations", "others", - "interfaces", "protocols", + "sources", + "forms", + "resources", + "translations", + "others", + "interfaces", + "protocols", ), "PyQt5": ( - "sources", "forms", "resources", "translations", "others", - "interfaces", "protocols", + "sources", + "forms", + "resources", + "translations", + "others", + "interfaces", + "protocols", ), "PyQt5C": ( - "sources", "resources", "translations", "others", - "interfaces", "protocols", + "sources", + "resources", + "translations", + "others", + "interfaces", + "protocols", ), "PyQt6": ( - "sources", "forms", "translations", "others", - "interfaces", "protocols", + "sources", + "forms", + "translations", + "others", + "interfaces", + "protocols", ), "PyQt6C": ( - "sources", "translations", "others", - "interfaces", "protocols", + "sources", + "translations", + "others", + "interfaces", + "protocols", ), "E7Plugin": ( - "sources", "forms", "translations", "others", - "interfaces", "protocols", + "sources", + "forms", + "translations", + "others", + "interfaces", + "protocols", ), "Console": ( - "sources", "others", - "interfaces", "protocols", + "sources", + "others", + "interfaces", + "protocols", ), "Other": ( - "sources", "others", - "interfaces", "protocols", + "sources", + "others", + "interfaces", + "protocols", ), "PySide2": ( - "sources", "forms", "resources", "translations", "others", - "interfaces", "protocols", + "sources", + "forms", + "resources", + "translations", + "others", + "interfaces", + "protocols", ), "PySide2C": ( - "sources", "resources", "translations", "others", - "interfaces", "protocols", + "sources", + "resources", + "translations", + "others", + "interfaces", + "protocols", ), "PySide6": ( - "sources", "forms", "resources", "translations", "others", - "interfaces", "protocols", + "sources", + "forms", + "resources", + "translations", + "others", + "interfaces", + "protocols", ), "PySide6C": ( - "sources", "resources", "translations", "others", - "interfaces", "protocols", + "sources", + "resources", + "translations", + "others", + "interfaces", + "protocols", ), }