Button.st
changeset 1806 fe6269361661
parent 1805 b555e7ddbeec
child 1812 e16f60e95217
--- a/Button.st	Fri Mar 19 21:09:51 1999 +0100
+++ b/Button.st	Fri Mar 19 21:20:42 1999 +0100
@@ -1616,7 +1616,8 @@
 
 showFocus:explicit
     "the button got the keyboard focus 
-     (either explicit, via tabbing; or implicit, by pointer movement)"
+     (either explicit, via tabbing; or implicit, by pointer movement)
+      - change any display attributes as req'd."
 
     focusLogo notNil ifTrue:[
         controller enabled ifTrue:[
@@ -1636,7 +1637,8 @@
 
 showNoFocus:explicit
     "the button lost the keyboard focus 
-     (either explicit, via tabbing; or implicit, by pointer movement)"
+     (either explicit, via tabbing; or implicit, by pointer movement)
+      - change any display attributes as req'd."
 
     focusLogo notNil ifTrue:[
         disabledLogo notNil ifTrue:[
@@ -2242,5 +2244,5 @@
 !Button class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/Button.st,v 1.105 1999-03-19 20:09:51 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/Button.st,v 1.106 1999-03-19 20:20:26 cg Exp $'
 ! !