Make is possible to enhance color schemes from plugin in non-intellij environment (e.g. upsource)

This commit is contained in:
Denis Zhdanov
2015-04-10 10:51:49 +03:00
parent 4d8b7ae50d
commit f0e9bf9f4c
@@ -333,7 +333,7 @@ public abstract class AbstractColorsScheme implements EditorColorsScheme {
initFonts();
}
protected void readAttributes(@NotNull Element childNode) {
public void readAttributes(@NotNull Element childNode) {
for (Element e : childNode.getChildren(OPTION_ELEMENT)) {
TextAttributesKey name = TextAttributesKey.find(e.getAttributeValue(NAME_ATTR));
TextAttributes attr = new TextAttributes(e.getChild(VALUE_ELEMENT));