Skip to content

Commit 65bfe09

Browse files
committedSep 15, 2020
8253147: The javax/swing/JPopupMenu/7154841/bug7154841.java fail on big screens
Reviewed-by: prr
1 parent fc36328 commit 65bfe09

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎test/jdk/java/awt/ColorClass/AlphaColorTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -84,8 +84,8 @@ public void paint(Graphics g) {
8484
Color color = new Color(255, 255, 255, 127);
8585
frame.add("Center", new AlphaColorTest(color));
8686
frame.setUndecorated(true);
87-
frame.setLocationRelativeTo(null);
8887
frame.pack();
88+
frame.setLocationRelativeTo(null);
8989
frame.setVisible(true);
9090
}
9191
}

‎test/jdk/javax/swing/JPopupMenu/7154841/bug7154841.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -52,7 +52,7 @@ public class bug7154841 {
5252

5353
private static void initAndShowUI() {
5454
popupMenu = new JPopupMenu();
55-
for (int i = 0; i < 100; i++) {
55+
for (int i = 0; i < 400; i++) {
5656
JRadioButtonMenuItem item = new JRadioButtonMenuItem(" Test " + i);
5757
item.addMouseMotionListener(new MouseMotionAdapter() {
5858
@Override

0 commit comments

Comments
 (0)
Please sign in to comment.