Is it known that Spec models ignore menu shortcuts? at least some of them, TreeModel and FastTableModel. Example:
| example |
example := FastTableModel new.
example
items: (1 to: 10);
menu: [
| aMenu |
aMenu := MenuModel new.
aMenu addGroup: [ :aGroup |
aGroup addItem: [ :anItem |
anItem
name: 'Halt';
shortcut: $h command;
action: [ 1halt ] ] ].
aMenu buildWithSpecAsPopup ];
openWithSpec.
This is latest Pharo 6.
Cheers,
Martín