add background color for escaped symbols

This commit is contained in:
Eugene Zhuravlev
2012-06-22 16:22:45 +02:00
parent d2c696ff6a
commit 8928bac595
@@ -226,7 +226,7 @@ public class DebuggerTreeRenderer extends ColoredTreeCellRenderer {
}
private static void appendValueTextWithEscapesRendering(SimpleColoredText descriptorText, String valueText, final SimpleTextAttributes attribs) {
final SimpleTextAttributes boldAttribs = attribs.derive(SimpleTextAttributes.STYLE_BOLD, null, null, null);
final SimpleTextAttributes boldAttribs = attribs.derive(SimpleTextAttributes.STYLE_BOLD, null, Color.lightGray, null);
final StringBuilder buf = new StringBuilder();
boolean slashFound = false;
for (int idx= 0; idx < valueText.length(); idx++) {