File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -84,8 +84,8 @@ public void paint(Graphics g) {
84
84
Color color = new Color (255 , 255 , 255 , 127 );
85
85
frame .add ("Center" , new AlphaColorTest (color ));
86
86
frame .setUndecorated (true );
87
- frame .setLocationRelativeTo (null );
88
87
frame .pack ();
88
+ frame .setLocationRelativeTo (null );
89
89
frame .setVisible (true );
90
90
}
91
91
}
Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -52,7 +52,7 @@ public class bug7154841 {
52
52
53
53
private static void initAndShowUI () {
54
54
popupMenu = new JPopupMenu ();
55
- for (int i = 0 ; i < 100 ; i ++) {
55
+ for (int i = 0 ; i < 400 ; i ++) {
56
56
JRadioButtonMenuItem item = new JRadioButtonMenuItem (" Test " + i );
57
57
item .addMouseMotionListener (new MouseMotionAdapter () {
58
58
@ Override
You can’t perform that action at this time.
0 commit comments