mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-14 16:10:39 +00:00
Direct navigation to inbox after quick setup
This commit is contained in:
parent
598e442321
commit
821178754d
1 changed files with 6 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue