new line chars in edit text fixed

This commit is contained in:
honfika@gmail.com
2015-02-12 13:30:54 +01:00
parent 2635a80946
commit 7d75d0c4ea

View File

@@ -597,7 +597,9 @@ public class DefineEditTextTag extends TextTag {
if (s2 == null) {
s2 = "";
}
formattedText += (texts == null || textIdx >= texts.length) ? s2 : texts[textIdx++];
formattedText = formattedText.replace("\r\n", "\r");
break;
}
}