ComboBox's inputField ought to use its default font.
authorClaus Gittinger <cg@exept.de>
Wed, 20 Jan 1999 20:24:00 +0100
changeset 1183 667132091c2f
parent 1182 c3809bedfd32
child 1184 58e399d8c312
ComboBox's inputField ought to use its default font.
ComboBoxV.st
ComboBoxView.st
ComboView.st
--- a/ComboBoxV.st	Tue Jan 19 18:17:35 1999 +0100
+++ b/ComboBoxV.st	Wed Jan 20 20:24:00 1999 +0100
@@ -204,6 +204,12 @@
     "Modified: 26.2.1997 / 19:44:13 / cg"
 ! !
 
+!ComboBoxView methodsFor:'private'!
+
+setFieldsFont:aFont
+    "ignored - the inputFields font remains unchanged"
+! !
+
 !ComboBoxView methodsFor:'queries'!
 
 specClass
@@ -249,5 +255,5 @@
 !ComboBoxView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/Attic/ComboBoxV.st,v 1.19 1998-01-25 14:14:40 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/Attic/ComboBoxV.st,v 1.20 1999-01-20 19:23:40 cg Exp $'
 ! !
--- a/ComboBoxView.st	Tue Jan 19 18:17:35 1999 +0100
+++ b/ComboBoxView.st	Wed Jan 20 20:24:00 1999 +0100
@@ -204,6 +204,12 @@
     "Modified: 26.2.1997 / 19:44:13 / cg"
 ! !
 
+!ComboBoxView methodsFor:'private'!
+
+setFieldsFont:aFont
+    "ignored - the inputFields font remains unchanged"
+! !
+
 !ComboBoxView methodsFor:'queries'!
 
 specClass
@@ -249,5 +255,5 @@
 !ComboBoxView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/ComboBoxView.st,v 1.19 1998-01-25 14:14:40 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ComboBoxView.st,v 1.20 1999-01-20 19:23:40 cg Exp $'
 ! !
--- a/ComboView.st	Tue Jan 19 18:17:35 1999 +0100
+++ b/ComboView.st	Wed Jan 20 20:24:00 1999 +0100
@@ -275,8 +275,7 @@
 font:aFont
 
     super font:aFont.
-
-    field font:aFont.
+    self setFieldsFont:aFont.
 !
 
 foregroundColor
@@ -494,6 +493,10 @@
 getValueFromModel
 
     "Modified: 15.7.1996 / 12:28:59 / cg"
+!
+
+setFieldsFont:aFont
+    field font:aFont.
 ! !
 
 !ComboView methodsFor:'queries'!
@@ -582,5 +585,5 @@
 !ComboView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/ComboView.st,v 1.41 1998-09-08 21:27:37 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ComboView.st,v 1.42 1999-01-20 19:24:00 cg Exp $'
 ! !