From 4b68e6ac92aef1f24f1b45f60b1a5a28cdb0c81d Mon Sep 17 00:00:00 2001 From: Tim Su Date: Thu, 14 Jul 2011 16:13:43 -0700 Subject: [PATCH] New incoming list names should be updated --- .../com/todoroo/astrid/actfm/TagViewActivity.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java b/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java index a955fdd61..98cf1bb2d 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java @@ -302,7 +302,7 @@ public class TagViewActivity extends TaskListActivity implements OnTabChangeList } }); - refreshMembersPage(); + refreshSettingsPage(); } protected void setUpUpdateList() { @@ -428,9 +428,10 @@ public class TagViewActivity extends TaskListActivity implements OnTabChangeList } @SuppressWarnings("nls") - private void refreshMembersPage() { + private void refreshSettingsPage() { tagName.setText(tagData.getValue(TagData.NAME)); picture.setUrl(tagData.getValue(TagData.PICTURE)); + setTitle(getString(R.string.tag_FEx_name, tagData.getValue(TagData.NAME))); TextView ownerLabel = (TextView) findViewById(R.id.tag_owner); try { @@ -492,7 +493,7 @@ public class TagViewActivity extends TaskListActivity implements OnTabChangeList @Override public void run() { refreshUpdatesList(); - refreshMembersPage(); + refreshSettingsPage(); } }); } @@ -626,7 +627,7 @@ public class TagViewActivity extends TaskListActivity implements OnTabChangeList tagDataService.save(tagData); - refreshMembersPage(); + refreshSettingsPage(); } @Override