Skip to content

Conversation

@azuev-java
Copy link
Member

@azuev-java azuev-java commented Jul 15, 2021

Reducing the height of the analyzed area to get rid of the rounded edges
at the botom of the frame. Apparently shadow outside of it being
rendered by Mac OS X Big Sur inconsistently which gives random test
failures on M1 macs with Big Sur.


Progress

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

Issue

  • JDK-8268284: javax/swing/JComponent/7154030/bug7154030.java fails with "Exception: Failed to hide opaque button"

Reviewers

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/4792/head:pull/4792
$ git checkout pull/4792

Update a local copy of the PR:
$ git checkout pull/4792
$ git pull https://git.openjdk.java.net/jdk pull/4792/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 4792

View PR using the GUI difftool:
$ git pr show -t 4792

Using diff file

Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/4792.diff

…xception: Failed to hide opaque button"

Reducing the height of the analyzed area to get rid of the rounded edges
at the botom of the frame. Apparently shadow outside of it being
rendered by Mac OS X Big Sur inconsistently which gives random test
failures on M1 macs with Big Sur.
@bridgekeeper
Copy link

bridgekeeper bot commented Jul 15, 2021

👋 Welcome back kizune! 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 Pull request is ready for review label Jul 15, 2021
@openjdk
Copy link

openjdk bot commented Jul 15, 2021

@azuev-java The following label will be automatically applied to this pull request:

  • swing

When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command.

@openjdk openjdk bot added the swing client-libs-dev@openjdk.org label Jul 15, 2021
@mlbridge
Copy link

mlbridge bot commented Jul 15, 2021

Webrevs

locy = bounds.y + insets.top;
frw = bounds.width - insets.left - insets.right;
frh = bounds.height - insets.top - insets.bottom;
frh = bounds.height - insets.top - insets.bottom - 25;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will making frame undecorated help instead of this?
Can you also please give a CI job running this test on all platforms for several iterations?
Since this test has undergone multiple iterations, can you please confirm that this test still fails without 7154030 fix?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will making frame undecorated help instead of this?

Yes, seems like making it undecorated fixes the issue. I can not provide many failure results since failures were pretty uncommon in the first place. As for the test run i will add link to it into the bug comment.

@mrserb
Copy link
Member

mrserb commented Jul 17, 2021

I also suggest to apply some suggestions from here:
#2790 (review)
and use the frame on EDT only, since this is a swing component.

@azuev-java
Copy link
Member Author

I also suggest to apply some suggestions from here:
#2790 (review)
and use the frame on EDT only, since this is a swing component.

As i pointed before - after frame is visible taking its coordinates from main thread should not be a problem - in all the cases so far i never had a case where coordinates were miscalculated. But if it makes you happy - it is no harm in moving of this functionality to invokeAndWait block. Here.

@mrserb
Copy link
Member

mrserb commented Jul 20, 2021

after frame is visible taking its coordinates from main thread should not be a problem

It is a problem since these coordinates and other states of the swing components are accessed without any synchronization on the main thread, this can lead to incorrect values being read, it is safe and good to always access Swing on EDT only.

Copy link
Member

@mrserb mrserb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks fine

@openjdk
Copy link

openjdk bot commented Jul 20, 2021

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

8268284: javax/swing/JComponent/7154030/bug7154030.java fails with "Exception: Failed to hide opaque button"

Reviewed-by: serb

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 78 new commits pushed to the master branch:

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.

➡️ To integrate this PR with the above commit message to the master branch, type /integrate in a new comment.

@openjdk openjdk bot added the ready Pull request is ready to be integrated label Jul 20, 2021
@azuev-java
Copy link
Member Author

/integrate

@openjdk
Copy link

openjdk bot commented Jul 20, 2021

Going to push as commit 534f005.
Since your change was applied there have been 78 commits pushed to the master branch:

Your commit was automatically rebased without conflicts.

@openjdk openjdk bot closed this Jul 20, 2021
@openjdk openjdk bot added integrated Pull request has been integrated and removed ready Pull request is ready to be integrated rfr Pull request is ready for review labels Jul 20, 2021
@openjdk
Copy link

openjdk bot commented Jul 20, 2021

@azuev-java Pushed as commit 534f005.

💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored.

@azuev-java azuev-java deleted the JDK-8268284 branch April 7, 2022 18:03
@openjdk openjdk bot added the client client-libs-dev@openjdk.org label Apr 7, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

client client-libs-dev@openjdk.org integrated Pull request has been integrated swing client-libs-dev@openjdk.org

Development

Successfully merging this pull request may close these issues.

3 participants