Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B committed Sep 20, 2018
1 parent 00ebecc commit d63462d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/java/eu/faircode/email/FragmentAccount.java
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,8 @@ public void onColorSelected(int color) {
colorPickerDialog.show(getFragmentManager(), "colorpicker");
} else {
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.content_frame, new FragmentPro()).addToBackStack("pro");
fragmentTransaction.hide(FragmentAccount.this);
fragmentTransaction.add(R.id.content_frame, new FragmentPro()).addToBackStack("pro");
fragmentTransaction.commit();
}
}
Expand Down

0 comments on commit d63462d

Please sign in to comment.