mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 06:08:31 +02:00
Start setup in new task always
This commit is contained in:
@@ -365,7 +365,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
|
||||
public boolean onMenuItemClick(MenuItem item) {
|
||||
String tab = FragmentOptions.TAB_LABELS.get(item.getOrder());
|
||||
startActivity(new Intent(ActivityView.this, ActivitySetup.class)
|
||||
.setAction(tab)
|
||||
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||
.putExtra("tab", tab));
|
||||
return true;
|
||||
}
|
||||
@@ -1543,7 +1543,8 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
|
||||
}
|
||||
|
||||
private void onMenuSetup() {
|
||||
startActivity(new Intent(ActivityView.this, ActivitySetup.class));
|
||||
startActivity(new Intent(ActivityView.this, ActivitySetup.class)
|
||||
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK));
|
||||
}
|
||||
|
||||
private void onMenuLegend() {
|
||||
|
||||
Reference in New Issue
Block a user