change delay time for check files in text editor
authorpenk
Thu, 29 Jan 2004 09:57:59 +0100
changeset 5461 acf501391ddd
parent 5460 305f441da48a
child 5462 1801808fc459
change delay time for check files in text editor
FileApplicationNoteBook.st
--- a/FileApplicationNoteBook.st	Wed Jan 28 14:13:02 2004 +0100
+++ b/FileApplicationNoteBook.st	Thu Jan 29 09:57:59 2004 +0100
@@ -3843,6 +3843,10 @@
 
 !FileApplicationNoteBook::TextEditor class methodsFor:'defaults'!
 
+checkModifiedDelayTime
+    ^ 5
+!
+
 tabStringFor:aApplicationType
 
     aApplicationType == #directoryDescription ifTrue:[
@@ -4647,7 +4651,7 @@
 
 setupCheckModify
 
-    Processor addTimedBlock:checkModifiedBlock afterSeconds:3.
+    Processor addTimedBlock:checkModifiedBlock afterSeconds:(self class checkModifiedDelayTime).
 ! !
 
 !FileApplicationNoteBook::TextEditor methodsFor:'queries'!
@@ -5226,5 +5230,5 @@
 !FileApplicationNoteBook class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.142 2004-01-28 13:11:24 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.143 2004-01-29 08:57:59 penk Exp $'
 ! !