try {
kit.insertHTML(doc, doc.getLength(), "<style>body { color: #7f7f7f;}</style>", 0, 0, null);
} catch (Throwable e) {
Flog.warn("Couldn't insert initial HTML into chat %s.", e.toString());
}
messagesScrollPane.getVerticalScrollBar().addAdjustmentListener(new AdjustmentListener() {
public void adjustmentValueChanged(AdjustmentEvent e) {
if (shouldScrollToBottom) {
e.getAdjustable().setValue(e.getAdjustable().getMaximum());
}
shouldScrollToBottom = false;