[squeak-dev] The Trunk: System-mt.841.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jul 22 09:48:36 UTC 2016


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].!



More information about the Squeak-dev mailing list