Submitted On 11-OCT-2001
salim.virani
This problem is ALSO SEEN on J2SE build 1.3.1-b24 on Linux.
I am running Red Hat Linux version 7.1
A very dirty workaround of using setVisible(false) followed
by setVisible(true) changes the icon .... but caused a bad
flicker !!
Submitted On 03-OCT-2002
shulok
Confirmed on J2SE 1.4.0.02 on Linux as well.
Mandrake 9.0
This should be a simple fix...
Submitted On 30-MAY-2003
kaytrenaf
Icon rose = new ImageIcon("rose.gif");
label2 = new JLabel("Label with text and icon", rose, SwingConstants.LEFT);
label2.setToolTipText("This is label 2");
c.add(label2);
I am having a problem with JFrame displaying my image; I am getting the lable and the ToolTipText but not the image.
Submitted On 15-JUN-2003
clp3
Frame.setIconImage() works okay on visible frames
on Windows 2000.
This does not update a visible frame's icon on Linux/KDE,
until you restart the KDE toolbar, or do:
frame.hide();
frame.show();
Submitted On 27-JUN-2003
ricky_clarkson
I'm not sure whether all taskbars, window switchers etc.
have an API for notification of change of icon, so, unless
Sun write code for each window manager, I can't imagine this
working properly.
Submitted On 27-JUN-2003
ricky_clarkson
Er, forget that last one. It seems there are property
change events in X, so there is probably a general solution.
Submitted On 09-FEB-2004
vegala
I can't belive this bug is still open. It should be a
simple fix.
PLEASE NOTE: JDK6 is formerly known as Project Mustang
|