FontDescription.st
changeset 2770 681927804a7e
parent 2544 8fdf3d873964
child 2771 25c96682a2f3
--- a/FontDescription.st	Tue Jun 15 15:59:12 1999 +0200
+++ b/FontDescription.st	Thu Jun 17 09:50:19 1999 +0200
@@ -488,7 +488,7 @@
 hash
     "return a number for hashing - req'd since = is redefined."
 
-    ^ (((family hash + face hash + style hash) bitShift:5) + (size hash)) bitAnd:16r3FFFFFFF
+    ^ (family hash + face hash + style hash + size) bitAnd:16r3FFFFFFF
 
     "Created: / 19.6.1998 / 04:19:06 / cg"
     "Modified: / 20.6.1998 / 17:04:00 / cg"
@@ -929,6 +929,6 @@
 !FontDescription class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.27 1999-03-30 17:40:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.28 1999-06-17 07:50:19 cg Exp $'
 ! !
 FontDescription initialize!