This commit is contained in:
M66B 2018-09-20 19:52:31 +00:00
parent 00ebeccb81
commit d63462d712
1 changed files with 2 additions and 1 deletions

View File

@ -352,7 +352,8 @@ public class FragmentAccount extends FragmentEx {
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();
}
}