The Trunk: Morphic-cmm.326.mcz

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

The Trunk: Morphic-cmm.326.mcz

commits-2
Chris Muller uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-cmm.326.mcz

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

Name: Morphic-cmm.326
Author: cmm
Time: 7 February 2010, 5:15:20.99 pm
UUID: 9d91e599-d518-4163-be0a-bf1e79ee282a
Ancestors: Morphic-dtl.325

- Fixed browse function from a code-pane when Preferences>>#alternativeBrowseIt is enabled.
- Look-tweak for 3.11; changed BalloonMorph>>#defaultBorderWidth to 0 from 1.  0 is appropriate for balloons because they are transient and wispy, not a solid object deserving a border.

=============== Diff against Morphic-dtl.325 ===============

Item was changed:
  ----- Method: BalloonMorph>>defaultBorderWidth (in category 'initialization') -----
  defaultBorderWidth
+ "0 is appropriate for balloons because they are transient and wispy, not a solid object deserving a border."
+ ^ 0!
- "answer the default border width for the receiver"
- ^ 1!

Item was changed:
  ----- Method: TextEditor>>browseClassFromIt (in category 'menu messages') -----
  browseClassFromIt
  "Launch a hierarchy browser for the class indicated by the current selection.  If multiple classes matching the selection exist, let the user choose among them."
 
  | aClass |
  self lineSelectAndEmptyCheck: [^ self].
 
  aClass := Utilities classFromPattern: (self selection string copyWithout: Character cr) withCaption: 'choose a class to browse...'.
  aClass ifNil: [^ morph flash].
 
+ SystemNavigation default spawnHierarchyForClass: aClass selector: nil!
- Utilities spawnHierarchyForClass: aClass selector: nil!