mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-16 13:55:03 -05:00
fix "select all" in key list multi-select
This commit is contained in:
parent
91b774d223
commit
8717642198
@ -240,7 +240,7 @@ public class KeyListFragment extends LoaderFragment
|
|||||||
}
|
}
|
||||||
case R.id.menu_key_list_multi_select_all: {
|
case R.id.menu_key_list_multi_select_all: {
|
||||||
// select all
|
// select all
|
||||||
for (int i = 0; i < mStickyList.getCount(); i++) {
|
for (int i = 0; i < mAdapter.getCount(); i++) {
|
||||||
mStickyList.setItemChecked(i, true);
|
mStickyList.setItemChecked(i, true);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user