JDialog 每次变小 dispose/setVisible(true)

JDialog gets smaller everytime gets dispose/setVisible(true)

First time called

[调用 10 次][3]

经过更多交互后,JDialog 最终变为浮动标题栏。调整它 "resets" 的大小。下面是调用此 JDialog 的 JPanel 中的代码。不知道是什么让它变小了,只是在点击这个按钮后才注意到它。

public class Mant_presentacion extends JPanel implements ActionListener{

Boton buscar_envase = new Boton(this, new ImageIcon("lupa.png"));   
Mant_env envase = new Mant_env();   
public final JFrame OWNER;

public Mant_presentacion(JFrame OWNER){
    this.OWNER = OWNER;
    setLayout(null);
    setBackground(Color.WHITE);
    d = new JDialog(OWNER, "Seleccionar envase", true);
    buscar_envase.setBounds(500, 50, 180, 30);
    buscar_envase.setText(" Examinar envases");
    buscar_envase.addActionListener(this);
}

JDialog d;

@Override
public void actionPerformed(ActionEvent e) {
    d.setSize(envase.getWidth(), envase.getHeight());
    d.add(envase);
    d.setLocationRelativeTo(null);
    d.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
    d.setVisible(true);
}
}
d.setSize(envase.getWidth(), envase.getHeight());

对话框的边界周围有装饰。如果代码将对话框 (d) 的大小设置为内容 (envase) 的大小,它每次都会缩小一点。