RFR: 8361606 : ConsumeNextMnemonicKeyTypedTest.java fails on Windows: character typed with VK_A: a [v3]
Alexey Ivanov
aivanov at openjdk.org
Thu Sep 25 17:16:06 UTC 2025
On Mon, 25 Aug 2025 10:43:51 GMT, Anass Baya <abaya at openjdk.org> wrote:
>> **Analysis :**
>> When the problem occurrs, the key press event related to the mnemonic triggers the item selection. However, as we returned to the menu, the subsequent key typed event arrived and was treated as a normal key press instead of being recognized as part of the mnemonic sequence.
>>
>> **Proposed Fix:**
>> As a fix, we are tagging the next key typed event to be consumed by the Keyboard Focus Manager
>>
>>
>> public void processKeyEvent(Component focusedComponent, KeyEvent e) {
>> // consume processed event if needed
>> if (consumeProcessedKeyEvent(e)) { <--- consumed here
>> return;
>> }
>> ...
>
> Anass Baya has updated the pull request incrementally with one additional commit since the last revision:
>
> add Linux bug ID 8321303
~~I wonder if `MenuKeyboardHelper` object that handles key presses can be left in an inconsistent state if `keyTyped` and, I presume, `keyReleased` aren't delivered to it.~~ No, it can't, the flag `receivedKeyPressed` is reset when menu items are removed. It could be worth verifying nevertheless.
-------------
PR Comment: https://git.openjdk.org/jdk/pull/26790#issuecomment-3335131417
More information about the client-libs-dev
mailing list