On 06/23/2013 08:04 PM, Mike [via jogamp] wrote:
> My keyPressed(KeyEvent e) input listener seems to miss certain key press events.
>
> I can most reliably reproduce it by pressing and holding down VK_RIGHT, then
> pressing VK_UP. The initial VK_UP pressed event never fires. Although
> subsequent VK_UP auto-repeat will fire. This seems to happen with any Action
> Key event.
>
> This is problematic if i am filtering my events with !e.isAutoRepeat().
>
Thank you!
Pls file a bug report, incl. your OS and Java version .. etc.
If you can - maybe even a unit test
while copying one of our existent NEWT*Key* tests ..
> Im not sure if this is some keyboard limitation i am unaware of, or some
> corner case that is working as intended.
I haven't tested such combination either,
but a unit test will show us.
If it's working in general w/ a native application
on your platform - it should work w/ NEWT.
~Sven
>
> ~Mike