CharacterSetView.st
changeset 3575 3682d1338906
parent 3484 7d9a3d9890f6
child 3932 6ec7e708cad5
--- a/CharacterSetView.st	Sun Oct 26 21:12:31 2008 +0100
+++ b/CharacterSetView.st	Sun Oct 26 21:12:48 2008 +0100
@@ -522,6 +522,12 @@
 !CharacterSetView methodsFor:'queries'!
 
 preferredExtent
+    "/ If I have an explicit preferredExtent..
+    explicitExtent notNil ifTrue:[
+        ^ explicitExtent
+    ].
+
+    "/ If I have a cached preferredExtent value..
     preferredExtent notNil ifTrue:[
         ^ preferredExtent
     ].
@@ -534,5 +540,5 @@
 !CharacterSetView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/CharacterSetView.st,v 1.23 2008-07-18 09:41:21 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/CharacterSetView.st,v 1.24 2008-10-26 20:12:48 stefan Exp $'
 ! !