work around against last article line being clipped (refs #527)

This commit is contained in:
Andrew Dolgov 2013-01-04 02:04:06 +04:00
parent 19b6f9e1a1
commit c62d4b987b
3 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.fox.ttrss"
android:versionCode="129"
android:versionName="1.7" >
android:versionCode="130"
android:versionName="1.8" >
<uses-sdk
android:minSdkVersion="8"

View File

@ -281,7 +281,7 @@ public class ArticleFragment extends Fragment implements GestureDetector.OnDoubl
}
}
content += "</body></html>";
content += "<p>&nbsp;</p><p>&nbsp;</p></body></html>";
try {
web.loadDataWithBaseURL(null, content, "text/html", "utf-8", null);

View File

@ -250,7 +250,7 @@ public class OfflineArticleFragment extends Fragment implements GestureDetector.
cssOverride +
"</style>" +
"</head>" +
"<body>" + articleContent + "</body></html>";
"<body>" + articleContent + "<p>&nbsp;</p><p>&nbsp;</p></body></html>";;
try {
web.loadDataWithBaseURL(null, content, "text/html", "utf-8", null);