Direct navigation to inbox after quick setup

This commit is contained in:
M66B
2019-01-10 17:43:34 +00:00
parent 598e442321
commit 821178754d

View File

@@ -462,6 +462,12 @@ public class FragmentSetup extends FragmentEx {
new DialogBuilderLifecycle(getContext(), getViewLifecycleOwner())
.setMessage(R.string.title_setup_quick_success)
.setPositiveButton(android.R.string.ok, null)
.setNeutralButton(R.string.title_folder_inbox, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
finish();
}
})
.create()
.show();
}