# HG changeset patch # User Claus Gittinger # Date 922373716 -3600 # Node ID 8836fc20297032ccde3ccf2a66e941ffc9836a27 # Parent 2fe9b64b04b1a1fb3b7cf59b46762b10650b924e changed request-focus-with-Button press behavior. (now, all request it, except those which ecplicitely say: 'NO'; used to be vice versa) diff -r 2fe9b64b04b1 -r 8836fc202970 Separator.st --- a/Separator.st Tue Mar 23 10:55:18 1999 +0100 +++ b/Separator.st Thu Mar 25 15:55:16 1999 +0100 @@ -198,6 +198,16 @@ "Modified: / 18.4.1998 / 14:10:05 / cg" ! ! +!Separator methodsFor:'focus handling'! + +wantsFocusWithButtonPress + "no, do not catch the keyboard focus on button click" + + ^ false + + +! ! + !Separator methodsFor:'initialization'! initialize @@ -236,5 +246,5 @@ !Separator class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libwidg2/Separator.st,v 1.18 1998-04-18 12:31:17 cg Exp $' + ^ '$Header: /cvs/stx/stx/libwidg2/Separator.st,v 1.19 1999-03-25 14:55:16 cg Exp $' ! !