The Trunk: Environments-tonyg.81.mcz

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

The Trunk: Environments-tonyg.81.mcz

commits-2
Tony Garnock-Jones uploaded a new version of Environments to project The Trunk:
http://source.squeak.org/trunk/Environments-tonyg.81.mcz

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

Name: Environments-tonyg.81
Author: tonyg
Time: 29 March 2021, 10:20:10.069623 am
UUID: 3b64bc37-b2d0-4b78-85fe-fa13775df713
Ancestors: Environments-tonyg.80

Repair EnvironmentRequest signal.

=============== Diff against Environments-tonyg.80 ===============

Item was changed:
  ----- Method: EnvironmentRequest>>defaultAction (in category 'exceptionDescription') -----
  defaultAction
  | all environment |
  all := Environment allInstances.
+ environment := UIManager default
+ chooseFrom: (all collect: [:ea | ea printString])
+ values: all.
- environment := UIManager default chooseFrom: all values: all.
  self resume: environment.!