fix tree marking for nested sections with missing translations

This commit is contained in:
marhali 2022-01-18 09:37:54 +01:00
parent aaefe5c10f
commit d8d1ad443d

View File

@ -116,6 +116,7 @@ public class TreeModelMapper extends DefaultTreeModel implements SearchQueryList
PresentationData data = new PresentationData(key, null, null, null); PresentationData data = new PresentationData(key, null, null, null);
data.setForcedTextForeground(JBColor.RED); data.setForcedTextForeground(JBColor.RED);
childNode.setUserObject(data); childNode.setUserObject(data);
foundMissing = true;
} }
parent.add(childNode); parent.add(childNode);