The Trunk: ST80-mt.194.mcz

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

The Trunk: ST80-mt.194.mcz

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

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

Name: ST80-mt.194
Author: mt
Time: 17 February 2016, 3:25:29.486669 pm
UUID: 3d6d9da1-5d59-4624-94e5-a6c1e14d1969
Ancestors: ST80-mt.193

Fixes separators in screen menu.

=============== Diff against ST80-mt.193 ===============

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...'
+
  'restore display'
 
  'open...'
  'windows...'
  'changes...'
  'help...'
  'appearance...'
  'do...'
 
  'save'
  'save as...'
  'save and quit'
  'quit')
+ lines: #(2 4 5 11)
- lines: #(2 6 11)
  selections: #(
  openBrowser openWorkspace
  returnToPreviousProject jumpToProject restoreDisplay
  presentOpenMenu presentWindowMenu presentChangesMenu presentHelpMenu presentAppearanceMenu commonRequests
  snapshot saveAs snapshotAndQuit quit )
  "
  ScreenController new projectScreenMenu startUp
  "!