|
From: Vos, J. R. <jv...@an...> - 2003-08-13 17:40:46
|
In Controller.addIconButton(String path, ActionListener l)=20
The actionlistener is never added to the created button.
=20
Original:
public JButton addIconButton(String path, ActionListener l) {
JButton b =3D new JButton(new ImageIcon(path));
userButtons.add(b);
return b;
}
=20
fixed:
public JButton addIconButton(String path, ActionListener l) {
JButton b =3D new JButton(new ImageIcon(path));
b.addActionListener(l);
userButtons.add(b);
return b;
}
=20
Jerry Vos
ANL
|