The Trunk: Morphic-edc.347.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-edc.347.mcz

commits-2
Edgar J. De Cleene uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-edc.347.mcz

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

Name: Morphic-edc.347
Author: edc
Time: 18 February 2010, 8:04:13.064 am
UUID: 32c73bf9-07eb-449b-a5f5-d728174e9a64
Ancestors: Morphic-kb.346

Enhanced loadProject, now when you click in the dockingbar you have nicer interface.
Also., as in my case you have populated disk, the last directory is remembered

=============== Diff against Morphic-kb.346 ===============

Item was changed:
  ----- Method: TheWorldMenu>>loadProject (in category 'commands') -----
  loadProject
 
  | stdFileMenuResult |
  "Put up a Menu and let the user choose a '.project' file to load.  Create a thumbnail and jump into the project."
 
  Project canWeLoadAProjectNow ifFalse: [^ self].
  stdFileMenuResult := ((StandardFileMenu new) pattern: '*.pr';
+ oldFileFrom: FileList2 modalFolderSelector)
- oldFileFrom: FileDirectory default )
  startUpWithCaption: 'Select a File:' translated.
  stdFileMenuResult ifNil: [^ nil].
  ProjectLoading
  openFromDirectory: stdFileMenuResult directory
  andFileName: stdFileMenuResult name
  !