The Trunk: MonticelloConfigurations-dtl.155.mcz

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

The Trunk: MonticelloConfigurations-dtl.155.mcz

commits-2
David T. Lewis uploaded a new version of MonticelloConfigurations to project The Trunk:
http://source.squeak.org/trunk/MonticelloConfigurations-dtl.155.mcz

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

Name: MonticelloConfigurations-dtl.155
Author: dtl
Time: 6 January 2019, 5:49:54.35982 pm
UUID: 2a3d8d3c-2f1e-48f0-818c-09372e553791
Ancestors: MonticelloConfigurations-dtl.154

When editing a MCConfiguration, add the name of the configuration to the browser window label. This helps keep track of the configuration map being edited, which may otherwise be confusing when updating configuration maps across more than one repository or update stream name.

=============== Diff against MonticelloConfigurations-dtl.154 ===============

Item was changed:
  ----- Method: MCConfiguration>>browse (in category 'actions') -----
  browse
+ | browser |
+ browser := MCConfigurationBrowser new configuration: self.
+ name ifNotNil: [:nm | browser label: browser defaultLabel , ' ' , nm].
+ browser show!
- (MCConfigurationBrowser new configuration: self) show!

Item was changed:
  ----- Method: MCConfigurationBrowser>>defaultExtent (in category 'morphic ui') -----
  defaultExtent
+ ^ 360@500!
- ^ 350@500!