Feb. 25, 2011
5:20 p.m.
Comment #10 on issue 3743 by aplan...@gmail.com: Fix Finder UI (add shortcuts and more commands) http://code.google.com/p/pharo/issues/detail?id=3743 Hi Benjamin! I've found two problems: 1) Since keyStroke: is sent with the event as argument, now you have to get the character from the event :) ---- keyStroke: anEvent anEvent == $n ifTrue: [ ^ self browseSenders ]. ---- should be ---- keyStroke: anEvent anEvent keyCharacter == $n ifTrue: [ ^ self browseSenders ]. ---- 2) the menus are not built correctly (don't know why)