Closed GoogleCodeExporter closed 9 years ago
Verified. I remember fixing this with JLabel, so it shouldn't be hard to find
and fix. Probably it happens in some
other controls as well.
Original comment by kahuxtable
on 3 Mar 2010 at 10:19
By the way, it doesn't have to be in a tabbed pane. Replacing the guts of your
code with
JPanel testPanel = new JPanel();
JCheckBox cb = new JCheckBox("checkbox");
testPanel.add(cb);
testPanel.add(new JRadioButton("radio"));
testPanel.add(new JLabel("label"));
this.getContentPane().add(testPanel);
gives the same result.
Original comment by kahuxtable
on 3 Mar 2010 at 10:30
Fixed in r1351.
Changed the way we handle JPanel transparency to ensure a repaint when
necessary.
Original comment by kahuxtable
on 4 Mar 2010 at 6:28
Original issue reported on code.google.com by
Krist.Wo...@gmail.com
on 3 Mar 2010 at 6:20Attachments: