[squeak-dev] The Trunk: Morphic-kfr.1480.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Feb 28 15:46:34 UTC 2019


Karl Ramberg uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-kfr.1480.mcz

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

Name: Morphic-kfr.1480
Author: kfr
Time: 28 February 2019, 4:40:24.875838 pm
UUID: 9fdf2251-873b-9b42-a287-d85231cd70d3
Ancestors: Morphic-kfr.1479

Force update of TheWorldMainDockingBar

=============== Diff against Morphic-kfr.1479 ===============

Item was changed:
  ----- Method: TheWorldMainDockingBar>>newProjectMenuItemOn: (in category 'submenu - projects') -----
  newProjectMenuItemOn: menu
  
  	Project allSubclasses do: [ :each |
  		menu addItem: [ :item | 
  			item
  				contents: ('New ', each name) translated;
  				help: ('Start a new ', each name) translated;
  				target: self;
  				selector: #newProject:;
+ 				arguments: { each } ] ] !
- 				arguments: { each } ] ]!

Item was changed:
  (PackageInfo named: 'Morphic') postscript: '"Migrate all open resizers."
  AbstractResizerMorph allSubInstancesDo: [:ea |
  	ea handleColor isColor ifFalse: [ea handleColor: nil].
  	ea removeAllMorphs].
  
  "Re-enable deprecation warnings in Trunk."
+ Deprecation showDeprecationWarnings: true.
+ 
+ TheWorldMainDockingBar updateInstances'!
- Deprecation showDeprecationWarnings: true.'!



More information about the Squeak-dev mailing list