oops - encoding lock was turned on occasionally
authorClaus Gittinger <cg@exept.de>
Mon, 18 Sep 2006 16:55:35 +0200
changeset 7284 6a059ef93dc8
parent 7283 c172ac40e98e
child 7285 3b4b8c4507bc
oops - encoding lock was turned on occasionally (from command view)
FileBrowserV2.st
--- a/FileBrowserV2.st	Mon Sep 18 16:55:34 2006 +0200
+++ b/FileBrowserV2.st	Mon Sep 18 16:55:35 2006 +0200
@@ -1326,7 +1326,7 @@
         aspectFor:#fileEncodingLockImageHolder 
         ifAbsent:[
             BlockValue
-                with:[:m | m value ifTrue:[self class encodingLockIcon] ifFalse:[nil] ] 
+                with:[:m | m value == true ifTrue:[self class encodingLockIcon] ifFalse:[nil] ] 
                 argument:(self lockFileEncodingHolder)
         ]
 !
@@ -1853,7 +1853,7 @@
 !FileBrowserV2 class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileBrowserV2.st,v 1.155 2006-09-11 10:46:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileBrowserV2.st,v 1.156 2006-09-18 14:55:35 cg Exp $'
 ! !
 
 FileBrowserV2 initialize!