[squeak-dev] The Trunk: MonticelloConfigurations-dtl.155.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Jan 6 22:49:54 UTC 2019


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 at 500!
- 	^ 350 at 500!



More information about the Squeak-dev mailing list