summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-16 13:04:28 +0400
committerAndrew Dolgov <[email protected]>2013-04-16 13:04:28 +0400
commit18eebe9b4eac4ac15d7e5ea552e614dc5a450be7 (patch)
treefc33c3b8dddcfc97ec1b7752ded1064829103435 /src
parentef07afec72e181e0b0cec06493c14daf443ea7b9 (diff)
resize own icons, add share icon
Diffstat (limited to 'src')
-rw-r--r--src/org/fox/ttrss/OnlineActivity.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/org/fox/ttrss/OnlineActivity.java b/src/org/fox/ttrss/OnlineActivity.java
index 874a6a13..d398843b 100644
--- a/src/org/fox/ttrss/OnlineActivity.java
+++ b/src/org/fox/ttrss/OnlineActivity.java
@@ -971,7 +971,7 @@ public class OnlineActivity extends CommonActivity {
a.unread = true;
saveArticleUnread(a);
if (hf != null) hf.notifyUpdated();
- if (ap != null) ap.notifyUpdated();
+ //if (ap != null) ap.notifyUpdated();
}
return true;
case R.id.set_labels:
@@ -1194,7 +1194,11 @@ public class OnlineActivity extends CommonActivity {
@SuppressWarnings({ "unchecked", "serial" })
public void saveArticleUnread(final Article article) {
- ApiRequest req = new ApiRequest(getApplicationContext());
+ ApiRequest req = new ApiRequest(getApplicationContext()) {
+ protected void onPostExecute(JsonElement result) {
+ toast(R.string.article_set_unread);
+ }
+ };
HashMap<String, String> map = new HashMap<String, String>() {
{