Ensure top of card text visible when first viewed in Card Detail

This commit is contained in:
drdev
2013-11-15 12:14:03 +00:00
parent 8e4962ceb1
commit 7e6e691771

View File

@@ -33,6 +33,7 @@ public class FHtmlViewer extends JEditorPane {
SwingUtilities.invokeLater( new Runnable() { //need to invokeLater to avoid flicker
public void run() {
setSuperText(text.replaceAll("(\r\n)|(\n)", "<br>")); //replace line breaks with <br> elements
setCaretPosition(0); //keep scrolled to top
}
});
}