Sat, 13 Jan 2024 12:58:16 +0100
Removed an obsolete configuration option.
--- a/src/eric7/Preferences/ConfigurationPages/EditorSyntaxPage.py Sat Jan 13 12:57:48 2024 +0100 +++ b/src/eric7/Preferences/ConfigurationPages/EditorSyntaxPage.py Sat Jan 13 12:58:16 2024 +0100 @@ -31,9 +31,6 @@ self.onlineTimeoutSpinBox.setValue( Preferences.getEditor("OnlineSyntaxCheckInterval") ) - self.automaticSyntaxCheckCheckBox.setChecked( - Preferences.getEditor("AutoCheckSyntax") - ) # pyflakes related stuff self.includeCheckBox.setChecked(Preferences.getFlakes("IncludeInSyntaxCheck")) @@ -52,9 +49,6 @@ Preferences.setEditor( "OnlineSyntaxCheckInterval", self.onlineTimeoutSpinBox.value() ) - Preferences.setEditor( - "AutoCheckSyntax", self.automaticSyntaxCheckCheckBox.isChecked() - ) # pyflakes related stuff Preferences.setFlakes("IncludeInSyntaxCheck", self.includeCheckBox.isChecked())
--- a/src/eric7/Preferences/ConfigurationPages/EditorSyntaxPage.ui Sat Jan 13 12:57:48 2024 +0100 +++ b/src/eric7/Preferences/ConfigurationPages/EditorSyntaxPage.ui Sat Jan 13 12:58:16 2024 +0100 @@ -45,9 +45,6 @@ <property name="title"> <string>Automatic Syntax Check</string> </property> - <property name="checkable"> - <bool>true</bool> - </property> <layout class="QVBoxLayout" name="verticalLayout_2"> <item> <widget class="QGroupBox" name="onlineCheckBox">
--- a/src/eric7/Preferences/__init__.py Sat Jan 13 12:57:48 2024 +0100 +++ b/src/eric7/Preferences/__init__.py Sat Jan 13 12:58:16 2024 +0100 @@ -571,7 +571,6 @@ "CallTipsPosition": QsciScintilla.CallTipsPosition.CallTipsBelowText, # show QScintilla calltips, if plug-in fails "CallTipsScintillaOnFail": False, - "AutoCheckSyntax": True, "OnlineSyntaxCheck": True, "OnlineSyntaxCheckInterval": 5, "OnlineChangeTrace": True,