Open GoogleCodeExporter opened 9 years ago
Can you explain how you fixed it?
Original comment by dmel...@gmail.com
on 5 Feb 2011 at 12:19
My fix involves editing java resources, so it might be not-so-legal. I
nullified:
public static void setIcon(Frame frame)
{
Image image = Toolkit.getDefaultToolkit().createImage(PApplet.ICON_IMAGE);
frame.setIconImage(image);
}
this way:
public static void setIcon(Frame frame)
{
return;
}
... then used the icon from arduino.exe as resource for awt.dll (internal) and
javaw.exe (external).
Anyway, can you make PApplet.ICON_IMAGE multiresolution? or bigger (32x32 with
alpha channel) and use a smaller (16x16) for the windows icon control box?
Original comment by erwinr...@gmail.com
on 5 Feb 2011 at 1:33
Thanks! This worked perfect I've been trying to figure out how to get rid of
the terrible upscaled icon and this did the trick. Now if we could only get
the icon to work like other taskbar icons meaning that when you open new
arduino instances it just stacks them.
Original comment by nichols....@gmail.com
on 11 May 2011 at 9:39
It would be great to have a fix for this that doesn't require modified the Java
distribution within the Arduino software. Anyone have a way to fix this in the
setIcon() function?
Original comment by dmel...@gmail.com
on 22 Oct 2011 at 11:06
The icon is still "ugly" in 1.01
Original comment by damage3...@gmail.com
on 7 Jun 2012 at 8:57
Attachments:
Mr. Mellis, there is a clean way to fix the icon:
https://github.com/eried/Arduino/commit/91c7a2d41d1d02ebea8aea7afdc99cbef9c51d6e
Original comment by erwinr...@gmail.com
on 26 Oct 2012 at 2:04
The icon is still "ugly" in 1.6.2
Original comment by suyash.b...@gmail.com
on 29 Mar 2015 at 4:30
Attachments:
Original issue reported on code.google.com by
erwinr...@gmail.com
on 4 Feb 2011 at 1:18