Removed an obsolete configuration option. eric7

Sat, 13 Jan 2024 12:58:16 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 13 Jan 2024 12:58:16 +0100
branch
eric7
changeset 10498
6bbe8e2210d7
parent 10497
0d7f1c8cd219
child 10499
71208bcc7d99

Removed an obsolete configuration option.

src/eric7/Preferences/ConfigurationPages/EditorSyntaxPage.py file | annotate | diff | comparison | revisions
src/eric7/Preferences/ConfigurationPages/EditorSyntaxPage.ui file | annotate | diff | comparison | revisions
src/eric7/Preferences/__init__.py file | annotate | diff | comparison | revisions
--- 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,

eric ide

mercurial