1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-03 09:49:19 +02:00

more issues

This commit is contained in:
Nikolay Pultsin 2013-09-17 15:31:28 +04:00
parent fcde2855cf
commit 1ef5e02d45
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
* ISSUES:
** do not use NetworkLibrary instance in AllCatalogsActivity, send result via intent
** do not use myChanged state flag in AllCatalogsActivity, use setResult immediately
* SHORT-TERM (1.8.3) * SHORT-TERM (1.8.3)
+ check recently added catalogs are not lost (and are visible) after update + check recently added catalogs are not lost (and are visible) after update
+ newly added catalog is not checked in filter activity + newly added catalog is not checked in filter activity

View file

@ -47,7 +47,7 @@ public class AllCatalogsActivity extends ListActivity {
protected void onCreate(Bundle icicle) { protected void onCreate(Bundle icicle) {
super.onCreate(icicle); super.onCreate(icicle);
Intent intent = getIntent(); final Intent intent = getIntent();
myIds = intent.getStringArrayListExtra(IDS_LIST); myIds = intent.getStringArrayListExtra(IDS_LIST);
myInactiveIds = intent.getStringArrayListExtra(INACTIVE_IDS_LIST); myInactiveIds = intent.getStringArrayListExtra(INACTIVE_IDS_LIST);
} }
@ -193,6 +193,7 @@ public class AllCatalogsActivity extends ListActivity {
public void onClick(View v) { public void onClick(View v) {
catalogItem.IsChecked = checkBox.isChecked(); catalogItem.IsChecked = checkBox.isChecked();
myIsChanged = true; myIsChanged = true;
setResult(... Intent)
} }
}); });
} }