Not included changes (can be ignored for now)

This commit is contained in:
magenoxx 2012-06-28 16:40:46 +04:00
parent b983bb2e7d
commit 7bcd512351
3 changed files with 106 additions and 26 deletions

View file

@ -30,9 +30,9 @@ public class MageTextArea extends JEditorPane {
public void setText(String text, int fontSize) {
if (text == null) return;
String fontFamily = "arial";
String fontFamily = "times";
final StringBuffer buffer = new StringBuffer(512);
final StringBuilder buffer = new StringBuilder(512);
buffer.append("<html><body style='font-family:");
buffer.append(fontFamily);
buffer.append(";font-size:");