I fixed it in Pharo 6. Look at issue 19277
<https://pharo.fogbugz.com/f/cases/19277/FastTable-not-support-deselection-while-command-click-is-used-on-multiple-selection>
.
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.mora...@gmail.com>:

>
> 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
>
>

Reply via email to