diff -r 67c3ea933787 -r 2001accf55b3 eric7/Preferences/ConfigurationDialog.py --- a/eric7/Preferences/ConfigurationDialog.py Wed Dec 29 16:38:32 2021 +0100 +++ b/eric7/Preferences/ConfigurationDialog.py Wed Dec 29 16:53:04 2021 +0100 @@ -380,6 +380,8 @@ self.configItems.update( ericApp().getObject("PluginManager").getPluginConfigData()) + # TODO: add mode for Mini Editor (?) + elif displayMode == ConfigurationMode.WEBBROWSERMODE: self.configItems = { # key : [display string, pixmap name, dialog module name or @@ -390,7 +392,7 @@ # 'save' to save the settings. "interfacePage": [self.tr("Interface"), "preferences-interface", - "WebBrowserInterfacePage", None, None], + "InterfaceLightPage", None, None], "networkPage": [self.tr("Network"), "preferences-network", "NetworkPage", None, None], @@ -446,14 +448,12 @@ # 'save' to save the settings. "interfacePage": [self.tr("Interface"), "preferences-interface", - "WebBrowserInterfacePage", None, None], + "InterfaceLightPage", None, None], "hexEditorPage": [self.tr("Hex Editor"), "hexEditor", "HexEditorPage", None, None], } - # TODO: add mode for Mini Editor - else: # display mode for generic use self.configItems = { @@ -465,7 +465,7 @@ # 'save' to save the settings. "interfacePage": [self.tr("Interface"), "preferences-interface", - "WebBrowserInterfacePage", None, None], + "InterfaceLightPage", None, None], } # generate the list entries