This commit is contained in:
M66B
2019-10-12 17:16:53 +02:00
parent 11995f372f
commit c32fe99e81
36 changed files with 236 additions and 235 deletions

View File

@@ -153,7 +153,7 @@ public class FragmentContacts extends FragmentBase {
onMenuHelp();
return true;
case R.id.menu_delete:
new FragmentDelete().show(getFragmentManager(), "contacts:delete");
new FragmentDelete().show(getParentFragmentManager(), "contacts:delete");
return true;
default:
return super.onOptionsItemSelected(item);
@@ -191,7 +191,7 @@ public class FragmentContacts extends FragmentBase {
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(getFragmentManager(), ex);
Helper.unexpectedError(getParentFragmentManager(), ex);
}
}.execute(getContext(), getActivity(), new Bundle(), "contacts:delete");
}