mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-03 01:39:18 +02:00
more issues
This commit is contained in:
parent
fcde2855cf
commit
1ef5e02d45
2 changed files with 6 additions and 1 deletions
|
@ -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)
|
||||
+ check recently added catalogs are not lost (and are visible) after update
|
||||
+ newly added catalog is not checked in filter activity
|
||||
|
|
|
@ -47,7 +47,7 @@ public class AllCatalogsActivity extends ListActivity {
|
|||
protected void onCreate(Bundle icicle) {
|
||||
super.onCreate(icicle);
|
||||
|
||||
Intent intent = getIntent();
|
||||
final Intent intent = getIntent();
|
||||
myIds = intent.getStringArrayListExtra(IDS_LIST);
|
||||
myInactiveIds = intent.getStringArrayListExtra(INACTIVE_IDS_LIST);
|
||||
}
|
||||
|
@ -193,6 +193,7 @@ public class AllCatalogsActivity extends ListActivity {
|
|||
public void onClick(View v) {
|
||||
catalogItem.IsChecked = checkBox.isChecked();
|
||||
myIsChanged = true;
|
||||
setResult(... Intent)
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue