[squeak-dev] The Trunk: Morphic-mt.769.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Mar 5 10:43:03 UTC 2015


Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.769.mcz

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

Name: Morphic-mt.769
Author: mt
Time: 5 March 2015, 11:42:26.808 am
UUID: ee4fec28-7d78-7a4b-9f0e-5c7a883d0964
Ancestors: Morphic-mt.768

Fixes icon access wrt. list filtering.

=============== Diff against Morphic-mt.768 ===============

Item was changed:
  ----- Method: PluggableListMorph>>iconAt: (in category 'model access') -----
  iconAt: anInteger
+ 
+ 	| index |
+ 	index := (self hasFilter and: [list notNil])
+ 		ifTrue: [self getFullList indexOf: (list at: anInteger)]
+ 		ifFalse: [anInteger].
+ 	^ getIconSelector ifNotNil: [model perform: getIconSelector with: index]!
- 	^ getIconSelector ifNotNil: [model perform: getIconSelector with: anInteger]!



More information about the Squeak-dev mailing list