Focal radial gradient raw edit fix

This commit is contained in:
2017-04-01 11:31:10 +02:00
parent bbb04921d6
commit 29f5c17767
6 changed files with 73 additions and 9 deletions
@@ -701,7 +701,6 @@ public class GenericTagTreePanel extends GenericTagPanel {
}
}
// todo: check other condition filters
if (condEnabled) {
type = cond.type();
}
@@ -790,8 +789,8 @@ public class GenericTagTreePanel extends GenericTagPanel {
String parentPath = currentPath.indexOf('.') == -1 ? "" : currentPath.substring(0, currentPath.lastIndexOf('.'));
try {
for (String cname : ev.getFields()) {
String fullParh = parentPath + "." + cname;
if (fullParh.equals(dependence)) {
String fullPath = parentPath + "." + cname;
if (fullPath.equals(dependence)) {
ret.add(fnode);
break;
}