AppletLoader: fix mixed mode message when using custom logo images.

This commit is contained in:
kappa1 2010-08-23 18:02:17 +00:00
parent 6be13dfd45
commit 4d59d460d0

View file

@ -1434,7 +1434,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
*/
protected Image getImage(String s) {
try {
URL url = AppletLoader.class.getResource("/"+s);
URL url = ClassLoader.getSystemClassLoader().getResource("/"+s);
// if image not found in jar, look outside it
if (url == null) {