Open GoogleCodeExporter opened 9 years ago
Diagnostic investigation so far:
pynsource/src/gui/uml_canvas.py
{{{
def onKeyChar(self, event):
"""
These are secret keycodes not exposed on the menu
Normally shortcuts added on the menu work fine.
"""
print 'onKeyChar', event.GetKeyCode() <-----
if event.GetKeyCode() >= 256:
event.Skip()
return
}}}
Seems to be very 'mode' related and intermittent. Perhaps investigate whether
we are using menu shortcuts keys and are they interfering with key
interception, or vice versa.
Original comment by abu...@gmail.com
on 25 Aug 2014 at 11:23
Original issue reported on code.google.com by
abu...@gmail.com
on 25 Aug 2014 at 11:18