Skip to content

Commit 81d7475

Browse files
committedMay 5, 2022
7132796: [macosx] closed/javax/swing/JComboBox/4517214/bug4517214.java fails on MacOS
Reviewed-by: serb
1 parent 4a5e7a1 commit 81d7475

File tree

2 files changed

+100
-7
lines changed

2 files changed

+100
-7
lines changed
 

‎src/java.desktop/macosx/classes/com/apple/laf/AquaComboBoxUI.java

-7
Original file line numberDiff line numberDiff line change
@@ -619,13 +619,6 @@ public Dimension getMinimumSize(final JComponent c) {
619619
size = super.getMinimumSize(c);
620620
}
621621

622-
final Border border = c.getBorder();
623-
if (border != null) {
624-
final Insets insets = border.getBorderInsets(c);
625-
size.height += insets.top + insets.bottom;
626-
size.width += insets.left + insets.right;
627-
}
628-
629622
cachedMinimumSize.setSize(size.width, size.height);
630623
isMinimumSizeDirty = false;
631624

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
/*
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @key headful
27+
* @bug 4517214
28+
* @summary Tests that comboBox is not doubleheight if editable and has TitledBorder
29+
*/
30+
31+
import javax.swing.BorderFactory;
32+
import javax.swing.JComboBox;
33+
import javax.swing.JFrame;
34+
import javax.swing.JPanel;
35+
import javax.swing.SwingUtilities;
36+
import javax.swing.WindowConstants;
37+
import java.awt.GridBagConstraints;
38+
import java.awt.GridBagLayout;
39+
import java.awt.Robot;
40+
41+
public class TestComboBoxHeight {
42+
private static String[] data = { "Ten", "Twenty", "Forty-three" };
43+
private static JFrame jframe;
44+
private static int heightCombo1, heightCombo2;
45+
private static JComboBox combo1, combo2;
46+
47+
public static void main(String[] args) throws Exception {
48+
try {
49+
Robot robot = new Robot();
50+
robot.setAutoDelay(100);
51+
SwingUtilities.invokeAndWait(() -> {
52+
jframe = new JFrame();
53+
54+
GridBagLayout gridBag = new GridBagLayout();
55+
GridBagConstraints c = new GridBagConstraints();
56+
JPanel p = new JPanel(gridBag);
57+
c.fill = GridBagConstraints.NONE;
58+
59+
// fine-looking combo
60+
combo1 = new JComboBox(data);
61+
combo1.setEditable(true);
62+
gridBag.setConstraints(combo1, c);
63+
p.add(combo1);
64+
65+
// combo has border
66+
combo2 = new JComboBox(data);
67+
combo2.setEditable(true);
68+
combo2.setBorder(BorderFactory.
69+
createTitledBorder("Combo Border"));
70+
gridBag.setConstraints(combo2, c);
71+
p.add(combo2);
72+
73+
jframe.setContentPane(p);
74+
jframe.setLocationRelativeTo(null);
75+
jframe.setSize(400, 200);
76+
jframe.setDefaultCloseOperation(
77+
WindowConstants.DISPOSE_ON_CLOSE);
78+
jframe.setVisible(true);
79+
});
80+
81+
robot.delay(1000);
82+
robot.waitForIdle();
83+
SwingUtilities.invokeAndWait(() -> {
84+
heightCombo1 = combo1.getHeight();
85+
heightCombo2 = combo2.getHeight();
86+
});
87+
88+
if (heightCombo2 >= heightCombo1 * 2) {
89+
throw new RuntimeException("combo boxes with border " +
90+
" should not have double height compared to normal combobox");
91+
}
92+
} finally {
93+
SwingUtilities.invokeAndWait(() -> {
94+
if (jframe != null) {
95+
jframe.dispose();
96+
}
97+
});
98+
}
99+
}
100+
}

0 commit comments

Comments
 (0)
Please sign in to comment.