mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-02 15:17:03 +02:00
Removed add identity from compose
This commit is contained in:
@@ -121,7 +121,6 @@ public class FragmentCompose extends FragmentEx {
|
||||
|
||||
private ViewGroup view;
|
||||
private Spinner spIdentity;
|
||||
private ImageView ivIdentityAdd;
|
||||
private TextView tvExtraPrefix;
|
||||
private EditText etExtra;
|
||||
private TextView tvExtraSuffix;
|
||||
@@ -171,7 +170,6 @@ public class FragmentCompose extends FragmentEx {
|
||||
|
||||
// Get controls
|
||||
spIdentity = view.findViewById(R.id.spIdentity);
|
||||
ivIdentityAdd = view.findViewById(R.id.ivIdentityAdd);
|
||||
tvExtraPrefix = view.findViewById(R.id.tvExtraPrefix);
|
||||
etExtra = view.findViewById(R.id.etExtra);
|
||||
tvExtraSuffix = view.findViewById(R.id.tvExtraSuffix);
|
||||
@@ -221,18 +219,6 @@ public class FragmentCompose extends FragmentEx {
|
||||
}
|
||||
});
|
||||
|
||||
ivIdentityAdd.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
FragmentIdentity fragment = new FragmentIdentity();
|
||||
fragment.setArguments(new Bundle());
|
||||
|
||||
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
|
||||
fragmentTransaction.replace(R.id.content_frame, fragment).addToBackStack("identity");
|
||||
fragmentTransaction.commit();
|
||||
}
|
||||
});
|
||||
|
||||
View.OnClickListener onPick = new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
|
||||
Reference in New Issue
Block a user