UserPreferences.st
branchjv
changeset 17976 50c2416f962a
parent 17972 bb9b8fd2fe2a
child 17993 956342c369a2
--- a/UserPreferences.st	Mon Oct 29 17:05:17 2012 +0000
+++ b/UserPreferences.st	Mon Oct 29 22:07:56 2012 +0000
@@ -1889,6 +1889,35 @@
     "Created: / 17-07-2010 / 14:17:02 / cg"
 !
 
+runLintChecksInBackground
+    "controls the browser's lint-check behavior;
+     background operation (Jan's pref) makes it difficult to stop and debug...)"
+
+    ^ self at:#runLintChecksInBackground ifAbsent:true
+
+    "
+     UserPreferences current runLintChecksInBackground
+     UserPreferences current runLintChecksInBackground:true
+     UserPreferences current runLintChecksInBackground:false
+    "
+
+    "Created: / 17-07-2010 / 14:16:27 / cg"
+!
+
+runLintChecksInBackground:aBoolean
+    "controls the browser's lint-check behavior;
+     background operation (Jan's pref) makes it difficult to stop and debug...)"
+
+    ^ self at:#runLintChecksInBackground put:aBoolean
+
+    "
+     UserPreferences current runLintChecksInBackground:true
+     UserPreferences current runLintChecksInBackground:false
+    "
+
+    "Created: / 17-07-2010 / 14:17:02 / cg"
+!
+
 showAcceptCancelBarInBrowser
     "experimental."
 
@@ -3843,7 +3872,6 @@
     "Created: / 19-08-2011 / 12:51:58 / cg"
 ! !
 
-
 !UserPreferences methodsFor:'default settings-syntax colors'!
 
 listOfPredefinedSyntaxColoringSchemes
@@ -4114,11 +4142,11 @@
 !UserPreferences class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.315 2012/09/26 12:18:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.316 2012/10/22 17:24:42 cg Exp $'
 !
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.315 2012/09/26 12:18:47 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.316 2012/10/22 17:24:42 cg Exp §'
 !
 
 version_SVN