The Trunk: Morphic-ar.306.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-ar.306.mcz

commits-2
Andreas Raab uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ar.306.mcz

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

Name: Morphic-ar.306
Author: ar
Time: 12 January 2010, 7:01:35.34 pm
UUID: 5e71d444-c786-fa4d-b3d1-621d697b19ca
Ancestors: Morphic-ar.305

DockingBarMorph should be sticky by default to prevent accidental pickup. For deliberate pickup, use the halo.

=============== Diff against Morphic-ar.305 ===============

Item was changed:
  ----- Method: DockingBarMorph>>initialize (in category 'initialization') -----
  initialize
  "initialize the receiver"
  super initialize.
  ""
  selectedItem := nil.
  activeSubMenu := nil.
  fillsOwner := true.
  avoidVisibleBordersAtEdge := true.
  autoGradient := Preferences gradientMenu.
  ""
  self setDefaultParameters.
  ""
+ self beFloating; beSticky.
- self beFloating.
  ""
  self layoutInset: 0.
  !