The Trunk: System-mt.841.mcz

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

The Trunk: System-mt.841.mcz

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

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

Name: System-mt.841
Author: mt
Time: 22 July 2016, 11:48:11.810945 am
UUID: b1354fd5-23af-774d-a0df-a39882b25093
Ancestors: System-mt.840

Make the file-drop-service-menu more descriptive.

=============== Diff against System-mt.840 ===============

Item was changed:
  ----- Method: DefaultExternalDropHandler>>chooseServiceFrom: (in category 'private') -----
  chooseServiceFrom: aCollection
  "private - choose a service from aCollection asking the user if  needed"
  ^aCollection size = 1
  ifTrue: [aCollection anyOne]
  ifFalse:[UIManager default
  chooseFrom: (aCollection collect:[:each| each label])
+ values: aCollection
+ title: 'You dropped a file. Please choose a service:' translated withCRs].!
- values: aCollection].!

Item was changed:
  ----- Method: ExternalDropHandler class>>chooseServiceFrom: (in category 'private') -----
  chooseServiceFrom: aCollection
  "private - choose a service from aCollection asking the user if  needed"
  ^aCollection size = 1
  ifTrue: [aCollection anyOne]
  ifFalse:[UIManager default
  chooseFrom: (aCollection collect:[:each| each label])
+ values: aCollection
+ title: 'You dropped a file. Please choose a service:' translated withCRs].!
- values: aCollection].!