Skip to content
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

Closed
wants to merge 3 commits into from

Conversation

mstr2
Copy link
Collaborator

@mstr2 mstr2 commented Apr 2, 2021

This PR fixes incorrect parsing of mnemonic symbols in the following cases:

  1. an escaped double underscore incorrectly shows up as a double underscore in displayed text
  2. an extended mnemonic incorrectly removes a part of adjacent text

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

  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue
  • Change must be properly reviewed

Issue

  • JDK-8137323: Incorrect parsing of mnemonic in controls text

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

@bridgekeeper
Copy link

bridgekeeper bot commented Apr 2, 2021

👋 Welcome back mstr2! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk openjdk bot added the rfr Ready for review label Apr 2, 2021
@mlbridge
Copy link

mlbridge bot commented Apr 2, 2021

Webrevs

@kevinrushforth
Copy link
Member

/reviewers 2

@openjdk
Copy link

openjdk bot commented Apr 2, 2021

@kevinrushforth
The number of required reviews for this PR is now set to 2 (with at least 1 of role reviewers).

@aghaisas
Copy link
Collaborator

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.

@kevinrushforth
Copy link
Member

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.

Copy link
Member

@kevinrushforth kevinrushforth left a 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.

@openjdk
Copy link

openjdk bot commented Apr 30, 2021

@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:

8137323: Incorrect parsing of mnemonic in controls text

Reviewed-by: aghaisas, kcr

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 master branch:

  • e3e5116: 8265400: Update to gcc 10.3 on Linux
  • ccf51e4: 8265206: Tree-/TableCell: editing state not updated on cell re-use
  • 0a68613: 8264737: JavaFX media stream stops playing after reconnecting via Remote Desktop
  • cc70cdf: 8258777: SkinBase: add api to un-/register invalidation-/listChange listeners
  • 33bbf3f: 8263402: MemoryLeak: Node hardreferences it's previous Parent after csslayout and getting removed from the scene
  • 483f171: 8264677: MemoryLeak: Progressindicator leaks, when treeShowing is false
  • 6b63bf5: 8265669: AccumCell should not be visible
  • ed080c8: 8262276: Debug build of WebKit fails
  • db30e71: 8265513: Openjfx graphics build broken (Eclipse)
  • b50ce94: 8264952: [TestBug] Controls unit tests - ControlTest and SpinnerTest fail for non US Locale
  • ... and 35 more: https://git.openjdk.java.net/jfx/compare/e23a2feb8919285825993251b42acaaa13a41eb0...master

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 in a new comment. (Afterwards, your sponsor types /sponsor in a new comment to perform the integration).

@openjdk openjdk bot added the ready Ready to be integrated label Apr 30, 2021
@mstr2
Copy link
Collaborator Author

mstr2 commented Apr 30, 2021

/integrate

@openjdk openjdk bot added the sponsor Ready to sponsor label Apr 30, 2021
@openjdk
Copy link

openjdk bot commented Apr 30, 2021

@mstr2
Your change (at version d91d81a) is now ready to be sponsored by a Committer.

@kevinrushforth
Copy link
Member

/sponsor

@openjdk openjdk bot closed this Apr 30, 2021
@openjdk openjdk bot added integrated Pull request has been integrated and removed sponsor Ready to sponsor ready Ready to be integrated rfr Ready for review labels Apr 30, 2021
@openjdk
Copy link

openjdk bot commented Apr 30, 2021

@kevinrushforth @mstr2 Since your change was applied there have been 45 commits pushed to the master branch:

  • e3e5116: 8265400: Update to gcc 10.3 on Linux
  • ccf51e4: 8265206: Tree-/TableCell: editing state not updated on cell re-use
  • 0a68613: 8264737: JavaFX media stream stops playing after reconnecting via Remote Desktop
  • cc70cdf: 8258777: SkinBase: add api to un-/register invalidation-/listChange listeners
  • 33bbf3f: 8263402: MemoryLeak: Node hardreferences it's previous Parent after csslayout and getting removed from the scene
  • 483f171: 8264677: MemoryLeak: Progressindicator leaks, when treeShowing is false
  • 6b63bf5: 8265669: AccumCell should not be visible
  • ed080c8: 8262276: Debug build of WebKit fails
  • db30e71: 8265513: Openjfx graphics build broken (Eclipse)
  • b50ce94: 8264952: [TestBug] Controls unit tests - ControlTest and SpinnerTest fail for non US Locale
  • ... and 35 more: https://git.openjdk.java.net/jfx/compare/e23a2feb8919285825993251b42acaaa13a41eb0...master

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.

@mstr2 mstr2 deleted the fixes/JDK-8137323 branch January 22, 2023 16:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
integrated Pull request has been integrated
3 participants