Any way to get noncontiguous selection working in FTTableMorph in Pharo 5?
In Windows I cannot get two non-consecutive items to be selected.
Ctrl key causes menu to appear.
Shift key only allows consecutive items.
See for example this FastTable:
| 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