I fixed it in Pharo 6. Look at issue��19277.Maybe you can just load updated packages for FastTable to fix your problem.2017-05-20 22:41 GMT+02:00 Hern��n Morales Durand <hernan.morales@gmail.com>:
Any way to get noncontiguous selection working in FTTableMorph in Pharo 5?See for example this FastTable:
In Windows I cannot get two non-consecutive items to be selected.
Ctrl key causes menu to appear.
Shift key only allows consecutive items.| ds |
ds := FTTreeDataSource
������ roots: (1 to: 1000)
������ children: [ :data :item |
������ ������ item depth even
������ ������ ������ ifTrue: [ 1 to: data / 2 ]
������ ������ ������ ifFalse: [ 1 to: data - 1 ] ].
FTTableMorph new
������ extent: 200 @ 400;
������ dataSource: ds;
������ allowDeselection;
������ beMultipleSelection;
������ secondarySelectionColor: Color tan;
������ openInWindow.Any help will be appreciated.Cheers,Hern��n