From f42f237ddd68338ecf3a149c54b638bba63742b3 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Tue, 3 Jan 2012 16:02:42 -0800 Subject: [PATCH] Fixed a bug where the setting to silence list notifications would get turned off whenever you edited a list --- .../plugin-src/com/todoroo/astrid/actfm/TagSettingsActivity.java | 1 + 1 file changed, 1 insertion(+) diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/TagSettingsActivity.java b/astrid/plugin-src/com/todoroo/astrid/actfm/TagSettingsActivity.java index b626df0f4..63d268c81 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/TagSettingsActivity.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/TagSettingsActivity.java @@ -113,6 +113,7 @@ public class TagSettingsActivity extends Activity { tagName = (EditText) findViewById(R.id.tag_name); picture = (AsyncImageView) findViewById(R.id.picture); isSilent = (CheckBox) findViewById(R.id.tag_silenced); + isSilent.setChecked(tagData.getFlag(TagData.FLAGS, TagData.FLAG_SILENT)); if(actFmPreferenceService.isLoggedIn()) { picture.setVisibility(View.VISIBLE);