mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-25 15:10:47 +01:00
POP3 support
This commit is contained in:
@@ -1025,7 +1025,8 @@ public class ActivitySetup extends ActivityBase implements FragmentManager.OnBac
|
||||
}
|
||||
|
||||
private void onEditAccount(Intent intent) {
|
||||
FragmentAccount fragment = new FragmentAccount();
|
||||
boolean pop = intent.getBooleanExtra("pop", false);
|
||||
FragmentBase fragment = pop ? new FragmentPop() : new FragmentAccount();
|
||||
fragment.setArguments(intent.getExtras());
|
||||
FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();
|
||||
fragmentTransaction.replace(R.id.content_frame, fragment).addToBackStack("account");
|
||||
|
||||
Reference in New Issue
Block a user