[etoys-dev] Etoys: Morphic-kfr.90.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Mar 24 16:31:03 EDT 2012


Karl Ramberg uploaded a new version of Morphic to project Etoys:
http://source.squeak.org/etoys/Morphic-kfr.90.mcz

==================== Summary ====================

Name: Morphic-kfr.90
Author: kfr
Time: 24 March 2012, 9:30:33 pm
UUID: 4fcf029a-00ad-6e43-bab4-e50728c021cd
Ancestors: Morphic-bf.89

Typo : boundaries specifed.  SQ-1065

=============== Diff against Morphic-bf.89 ===============

Item was changed:
  ----- Method: TextMorph>>addFitAndWrapItemsTo: (in category 'menus') -----
  addFitAndWrapItemsTo: aMenu
  	"Add items relating to fitting and wrapping to the menu provided, providing menu-lines before and after the group added."
  
  	aMenu addLine.
  	aMenu 
  		addUpdating: #autoFitString
  		target: self
  		action: #autoFitOnOff.
  	aMenu balloonTextForLastItem: 'When checked, bounds are automatically adjusted to fit the contents.' translated.
  	aMenu 
  		addUpdating: #wrapString
  		target: self
  		action: #wrapOnOff.
+ 	aMenu balloonTextForLastItem: 'When checked, text is automatically wrapped to fit horizontally within the boundaries specified.' translated.
- 	aMenu balloonTextForLastItem: 'When checked, text is automatically wrapped to fit horizontally within the boundaries specifed.' translated.
  	aMenu 
  		addUpdating: #translatableString
  		target: self
  		action: #toggleTranslatable.
  	aMenu balloonTextForLastItem: 'When checked, contents will automatically be translated upon a locale change' translated.
  	aMenu addUpdating: #usePangoString target: self action: #toggleUsePango.
  
  	aMenu addLine.!



More information about the etoys-dev mailing list