correct font sizing when copying as HTML

This commit is contained in:
Dmitry Batrak
2014-04-11 15:23:58 +04:00
parent 471e1f9c18
commit 42c1335f7b
@@ -55,7 +55,7 @@ public class HtmlCopyPasteProcessor extends BaseTextWithMarkupCopyPasteProcessor
appendColor(myBuilder, myDefaultBackground);
myBuilder.append(';');
appendFontFamilyRule(myBuilder, myDefaultFontFamily);
myBuilder.append("font-size:").append(myFontSize).append(';');
myBuilder.append("font-size:").append(myFontSize).append("pt;");
myBuilder.append("\" bgcolor=\"");
appendColor(myBuilder, myDefaultBackground);
myBuilder.append("\">");