Is this a Swing Java 7 rendering bug?
问题 I made a simple Swing application. But the rendering behaves buggy. Have I done anything wrong or is it a bug? It's simple a small JFrame with a textfield, button and an empty list. If I first resizes the window horizontally and then type in the textfield, the button suddenly disappear. Here is my code: public class App extends JFrame { public App() { JTextField messageFld = new JTextField(); JButton saveBtn = new JButton("Save"); JPanel inputPanel = new JPanel(new BorderLayout()); inputPanel