diff -r 75dbbc834bd9 -r 29a834d9e497 Label.st --- a/Label.st Mon Jul 05 13:00:32 1999 +0200 +++ b/Label.st Mon Jul 05 13:01:49 1999 +0200 @@ -67,9 +67,9 @@ aLabel adjust:how - where how is one of the symbols left, #right, #center, #centerLeft, - #centerRight, #leftRight or #rightLeft (see the comment in Label>>adjust:). - The default is #center. + where how is one of the symbols left, #right, #center, #centerEach, + #centerLeft, #centerRight, #leftRight or #rightLeft + (see the comment in Label>>adjust:). The default is #center. model-less operation (ok for static labels): if no model is set, the labels contents is set with: @@ -356,9 +356,8 @@ l := Label in:top. l borderWidth:1. l label:'this labels logo -consists of -multiple lines with -#center adjust'. +consists of multiple lines +with #center adjust'. l origin:0.1@0.1. l corner:0.9@0.9. l adjust:#center. @@ -372,9 +371,8 @@ l := Label in:top. l borderWidth:1. l label:'this labels logo -consists of -multiple lines with -#centerEach adjust'. +consists of multiple lines +with #centerEach adjust'. l origin:0.1@0.1. l corner:0.9@0.9. l adjust:#centerEach. @@ -1770,5 +1768,5 @@ !Label class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libwidg/Label.st,v 1.104 1999-07-05 11:00:32 cg Exp $' + ^ '$Header: /cvs/stx/stx/libwidg/Label.st,v 1.105 1999-07-05 11:01:49 cg Exp $' ! !