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
8137323: Incorrect parsing of mnemonic in controls text #453
Conversation
👋 Welcome back mstr2! A progress list of the required criteria for merging this PR into |
/reviewers 2 |
@kevinrushforth |
Nice to see the broken behavior being fixed. Along with the supplied unit tests, I have verified that the fix does not break tests/manual/UI/ButtonMnemonicPositionTest.java as well. |
This looks good to me, although I have never used extended mnemonics, so don't know how to test them. The rest is fine (and the visual display of the extended mnemonics is fine as long as elided the parenthesized char is the right thing to do). I also verified that the new tests fail without the fix and pass with the fix. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since extended mnemonics don't seem to work either before or after your fix -- meaning you can't use the extended mnemonic character to select the button or action -- we can treat that as a separate issue.
So this fix looks good to me.
@mstr2 This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 45 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@aghaisas, @kevinrushforth) but any other Committer may sponsor as well. ➡️ To flag this PR as ready for integration with the above commit message, type |
/integrate |
/sponsor |
@kevinrushforth @mstr2 Since your change was applied there have been 45 commits pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit affb108. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
This PR fixes incorrect parsing of mnemonic symbols in the following cases:
As a side effect, this PR also fixes another undocumented issue for multiline text where text metrics calculations incorrectly operate on text for which mnemonic symbols have not been processed.
This can lead to a glitch where the mnemonic underscore makes a text just long enough to wrap to a new line, but when the text is rendered, the second line shows up entirely empty. The reason for this is that for rendering, the text is laid out after mnemonic symbols have been removed.
The solution is to always use processed text ("clean text") when laying out text.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jfx pull/453/head:pull/453
$ git checkout pull/453
Update a local copy of the PR:
$ git checkout pull/453
$ git pull https://git.openjdk.java.net/jfx pull/453/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 453
View PR using the GUI difftool:
$ git pr show -t 453
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jfx/pull/453.diff