In the following browser, whatever is selected in the list, if I press Modifier-i I get an inspect on 5.
=========================================== |browser| browser := GLMTabulator new. browser row: #list.
browser transmit to: #list; andShow: [:a | a list display: [:v | v to: 10 * v]; selectionAct: [:pres :selection | selection inspect] on: $i entitled: 'Inspect' ]. browser openOn: 5 ===========================================
How can I get an inspect on what is really selected?