-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tab in the last text field in a tab should focus the next tab in the tabs of the entry editor. #11937
Comments
Hi - I would like to be assigned to this issue please. Thank you! |
Guidance on Completing IssueHello, I am currently working on this issue with @juliusalberto and I'm a bit stuck. Specifically, I need help with the following:
Any pointers or advice on these two points would be greatly appreciated! Thank you for your help. |
We do not know. Create a minimal JavaFX application with two tabs and check how it works there. Then port this knowledge to JabRef. |
JavaFX Key Handling and Focus IssueHello, After exploring the codebase, I’ve learned how to check if a For example, if I create a listener for a I’ve tried using I’m unsure how to proceed or where I should be focusing my efforts. Any suggestions or guidance would be greatly appreciated thankyou. |
Your text did not include a link to if (keyBindingRepository.matches(e, {key-for-TAB})) { We have no key binding configuration for tab-to-next field. Which is OK. Just hard-code TAB. |
Ah! Good to know. I implemented this feature by setting up a method in Reasons for this approach:
Alternative approach: Another way to address this issue could be to modify the focus traversal list, so pressing "Tab" while a If you’re happy with this implementation, I can create a PR for you to review. Thank you! |
Hello, |
Follow up to #11886
Refs #11785
The text was updated successfully, but these errors were encountered: