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

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

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

Name: Morphic-mt.927
Author: mt
Time: 25 April 2015, 10:32:08.216 am
UUID: 31d408a0-2f07-184d-b7af-c04309b7f1c5
Ancestors: Morphic-mt.926

Removed default height for lists and texts because we have many tools were this breaks the GUI in combination with proportional layouts.

=============== Diff against Morphic-mt.926 ===============

Item was changed:
  ----- Method: PluggableListMorph>>initialize (in category 'initialization') -----
  initialize
  super initialize.
 
+ self minimumWidth: (self font widthOf: $m) * 5.!
- self minimumWidth: (self font widthOf: $m) * 5.
- self minimumHeight: (TextStyle default lineGrid * 3). !

Item was changed:
  ----- Method: PluggableTextMorph>>initialize (in category 'initialization') -----
  initialize
  "initialize the state of the receiver"
  super initialize.
  hasUnacceptedEdits := false.
  hasEditingConflicts := false.
  askBeforeDiscardingEdits := true.
 
+ self minimumWidth: (TextStyle defaultFont widthOf: $m) * 10.!
- self minimumWidth: (TextStyle defaultFont widthOf: $m) * 10.
- self minimumHeight: (TextStyle default lineGrid * 4). !