Author Topic: wxEVT_SCI_KEY event isn't sent  (Read 3367 times)

Offline p2rkw

  • Almost regular
  • **
  • Posts: 142
wxEVT_SCI_KEY event isn't sent
« on: November 26, 2012, 11:14:54 pm »
I can't handle up and down arrows because wxEVT_SCI_KEY isn't sent. Why there are only wxEVT_SCI_TAB and wxEVT_SCI_ESC? Can I fire this event in wxScintilla::OnKeyDown ?

Offline dmoore

  • Developer
  • Lives here!
  • *****
  • Posts: 1576
Re: wxEVT_SCI_KEY event isn't sent
« Reply #1 on: November 26, 2012, 11:23:22 pm »
I think that by design wxEVT_SCI_KEY only triggers for keystrokes that aren't processed by scintilla. You can process wxEVT_KEY* events instead