articlefragment: shorten with … instead of ...

This commit is contained in:
Andrew Dolgov 2012-12-09 15:06:48 +04:00
parent 09d319bebd
commit 1ef59c2213

View File

@ -115,7 +115,7 @@ public class ArticleFragment extends Fragment {
String titleStr;
if (m_article.title.length() > 200)
titleStr = m_article.title.substring(0, 200) + "...";
titleStr = m_article.title.substring(0, 200) + "";
else
titleStr = m_article.title;