The Inbox: ST80-ct.250.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: ST80-ct.250.mcz

commits-2
Christoph Thiede uploaded a new version of ST80 to project The Inbox:
http://source.squeak.org/inbox/ST80-ct.250.mcz

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

Name: ST80-ct.250
Author: ct
Time: 9 April 2020, 11:56:06.174949 pm
UUID: 37bcee2c-2272-9a41-bd75-88ba08349ec2
Ancestors: ST80-eem.249

Proposal: Add 'close menu' item to the MVC project menu

=============== Diff against ST80-eem.249 ===============

Item was added:
+ ----- Method: ScreenController>>closeProject (in category 'menu messages') -----
+ closeProject
+
+ Project current close.!

Item was changed:
  ----- Method: ScreenController>>projectScreenMenu (in category 'nested menus') -----
  projectScreenMenu
  "Answer the project screen menu."
 
  ^ SelectionMenu labelList:
  #(
  'browser'
  'workspace'
 
  'previous project'
  'jump to project...'
+ 'close project'
 
  'restore display'
 
  'open...'
  'windows...'
  'changes...'
  'help...'
  'appearance...'
  'do...'
 
  'save'
  'save as...'
  'save and quit'
  'quit')
+ lines: #(2 5 6 12)
- lines: #(2 4 5 11)
  selections: #(
  openBrowser openWorkspace
+ returnToPreviousProject jumpToProject closeProject restoreDisplay
- returnToPreviousProject jumpToProject restoreDisplay
  presentOpenMenu presentWindowMenu presentChangesMenu presentHelpMenu presentAppearanceMenu commonRequests
  snapshot saveAs snapshotAndQuit quit )
  "
  ScreenController new projectScreenMenu startUp
  "!

Item was changed:
  ----- Method: ScreenController>>returnToPreviousProject (in category 'menu messages') -----
  returnToPreviousProject
 
+ Project returnToPreviousProject.!
- Project returnToPreviousProject.
- !