ImageView.st
changeset 2358 68180cd61e53
parent 2164 df689a29b5d3
child 2375 e0c7852263e4
--- a/ImageView.st	Thu Nov 07 12:34:41 2002 +0100
+++ b/ImageView.st	Thu Nov 07 18:56:36 2002 +0100
@@ -316,6 +316,10 @@
     magnifiedImage notNil ifTrue:[
         ^ self
     ].
+    image isNil ifTrue:[
+        ^ self
+    ].
+        
     doFit := false.
 
     innerWidth := self innerWidth.
@@ -457,6 +461,7 @@
 !ImageView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/ImageView.st,v 1.50 2002-09-02 10:26:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ImageView.st,v 1.51 2002-11-07 17:56:36 cg Exp $'
 ! !
+
 ImageView initialize!