Etoys: Morphic-bf.95.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Etoys: Morphic-bf.95.mcz

commits-2
Bert Freudenberg uploaded a new version of Morphic to project Etoys:
http://source.squeak.org/etoys/Morphic-bf.95.mcz

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

Name: Morphic-bf.95
Author: bf
Time: 24 June 2012, 8:42:50 pm
UUID: 8436dee1-cc69-4b56-9d34-5ab9d0f6d2dd
Ancestors: Morphic-bf.94

SQ-1036: Fix typo in halo menu ballon help

=============== Diff against Morphic-bf.94 ===============

Item was changed:
  ----- Method: Morph>>addToggleItemsToHaloMenu: (in category 'menus') -----
  addToggleItemsToHaloMenu: aMenu
  "Add standard true/false-checkbox items to the memu"
 
  #(
+ (resistsRemovalString toggleResistsRemoval 'whether I should be resistant to easy deletion via the pink X handle')
- (resistsRemovalString toggleResistsRemoval 'whether I should be reistant to easy deletion via the pink X handle')
  (stickinessString toggleStickiness 'whether I should be resistant to a drag done by mousing down on me')
  (lockedString lockUnlockMorph 'when "locked", I am inert to all user interactions')
  (hasClipSubmorphsString changeClipSubmorphs 'whether the parts of objects within me that are outside my bounds should be masked.')
  (hasDirectionHandlesString changeDirectionHandles 'whether direction handles are shown with the halo')
  (hasDragAndDropEnabledString changeDragAndDrop 'whether I am open to having objects dropped into me')
  ) translatedNoop do:
 
  [:trip |
  (Preferences eToyFriendly not or: [trip size = 3]) ifTrue: [
  aMenu addUpdating: trip first action: trip second.
  aMenu balloonTextForLastItem: trip third translated
  ]
  ].
 
 
  self couldHaveRoundedCorners ifTrue:
  [aMenu addUpdating: #roundedCornersString action: #toggleCornerRounding.
  aMenu balloonTextForLastItem: 'whether my corners should be rounded' translated]!

_______________________________________________
etoys-dev mailing list
[hidden email]
http://lists.squeakland.org/mailman/listinfo/etoys-dev