changed: #showImagePreview:
authorClaus Gittinger <cg@exept.de>
Tue, 16 Oct 2012 09:07:42 +0200
changeset 11844 e8bed7c810d6
parent 11843 1418fefa55c1
child 11845 907ff100e5f2
changed: #showImagePreview: invalid or: fixed (typo)
FileBrowserV2.st
--- a/FileBrowserV2.st	Mon Oct 15 22:33:27 2012 +0200
+++ b/FileBrowserV2.st	Tue Oct 16 09:07:42 2012 +0200
@@ -1582,7 +1582,7 @@
     |imgView|
 
     imgView := builder componentAt:#Preview.
-    (imgView isNil or:[imgView scrolledView]) isNil ifTrue:[^ self].
+    (imgView isNil or:[imgView scrolledView isNil]) ifTrue:[^ self].
     imgView adjust:#fitBig.
     imgView image:image.
 
@@ -2004,7 +2004,7 @@
 !FileBrowserV2 class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/FileBrowserV2.st,v 1.201 2012-09-09 13:02:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileBrowserV2.st,v 1.202 2012-10-16 07:07:42 cg Exp $'
 ! !
 
 FileBrowserV2 initialize!