[squeak-dev] The Trunk: Tools-ar.117.mcz

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

[squeak-dev] The Trunk: Tools-ar.117.mcz

commits-2
Andreas Raab uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ar.117.mcz

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

Name: Tools-ar.117
Author: ar
Time: 24 August 2009, 9:21:52 am
UUID: 3f5cd9cd-a41c-9e43-bbdf-03faf40932fc
Ancestors: Tools-nice.116, Tools-rkrk.116

Merging Tools-rkrk.116:
- disable multiselect fo VersionsBrowser (makes no sense there)
- adding revert button to VersionsBrowser so you don't need to open a menu to revert to the selected version

=============== Diff against Tools-nice.116 ===============

Item was added:
+ ----- Method: VersionsBrowser>>initialExtent (in category 'user interface') -----
+ initialExtent
+
+ "adopt the extent so that the revert button fits in"
+ ^650@400!

Item was changed:
  ----- Method: ChangeList>>buildWith: (in category 'toolbuilder') -----
  buildWith: builder
+ ^self buildWith: builder multiSelect: self showsVersions not!
- ^self buildWith: builder multiSelect: true!

Item was added:
+ ----- Method: VersionsBrowser>>optionalButtonPairs (in category 'toolbuilder') -----
+ optionalButtonPairs
+
+ ^ #(('revert' fileInSelections 'resubmit the selected version, so that it becomes the current version')) , super optionalButtonPairs!