* Fix little bug in resolvePath().

This commit is contained in:
hns 2007-04-05 07:21:57 +00:00
parent f0bb5c322d
commit 6deb0a2a9a

View file

@ -877,8 +877,10 @@ public final class Skin {
} else if (!reval.scriptingEngine.isTypedObject(handler)) { } else if (!reval.scriptingEngine.isTypedObject(handler)) {
handler = reval.scriptingEngine.getProperty(handler, path[i]); handler = reval.scriptingEngine.getProperty(handler, path[i]);
if (handler == null) { if (handler == null) {
break; return null;
} }
} else {
return null;
} }
} }
return handler; return handler;