The Trunk: Morphic-mt.858.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-mt.858.mcz

commits-2
Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.858.mcz

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

Name: Morphic-mt.858
Author: mt
Time: 11 April 2015, 8:17:49.802 am
UUID: 177c14bc-e5d4-ad44-9d21-37d64d7f69e0
Ancestors: Morphic-mt.857

Remove special behavior for tool-opening at the hand when inspecting or exploring morphs via the halo context menu.

Use the preference #openToolsAttachedToMouseCursor if you want that behavior. Then, you will have it not only in those two cases but for any mouse-invoked tool opening.

=============== Diff against Morphic-mt.857 ===============

Item was changed:
  ----- Method: Morph>>exploreInMorphic (in category 'menus') -----
  exploreInMorphic
+
+ ToolSet explore: self.!
- self currentHand attachMorph: (ToolSet explore: self).!

Item was changed:
  ----- Method: Morph>>exploreInMorphic: (in category 'menus') -----
  exploreInMorphic: evt
+
+ ToolSet explore: self.!
- evt hand attachMorph: (ToolSet explore: self).!

Item was changed:
  ----- Method: Morph>>inspectInMorphic (in category 'menus') -----
  inspectInMorphic
+
+ ToolSet inspect: self.!
- self currentHand attachMorph: ((ToolSet inspect: self) extent: 300@200)!

Item was changed:
  ----- Method: Morph>>inspectInMorphic: (in category 'menus') -----
  inspectInMorphic: evt
+
+ ToolSet inspect: self.
+ !
- evt hand attachMorph: ((ToolSet inspect: self) extent: 300@200)!