Tests - hover and clipboard fixes

This commit is contained in:
dragonmacher 2019-05-10 10:28:55 -04:00
parent 2497a347ea
commit 42e863e15c

View File

@ -227,9 +227,9 @@ public abstract class AbstractReferenceHover extends AbstractConfigurableHover {
for (Symbol s : symbols) {
ColorAndStyle style = inspector.getColorAndStyle(s);
String name = s.getName(true);
name = HTMLUtilities.friendlyEncodeHTML(pad);
name = pad + HTMLUtilities.friendlyEncodeHTML(name);
String html = style.toHtml(name);
buffy.append(pad).append(html).append(newline);
buffy.append(html).append(newline);
}
}