Made colored flags pro feature

pull/156/head
M66B 5 years ago
parent 3938cac8ec
commit 6dbf097e47

@ -1181,7 +1181,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
}
private void onColor(final Intent intent) {
if (!Helper.isPro(this) && !BuildConfig.BETA_RELEASE) {
if (!Helper.isPro(this)) {
FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.content_frame, new FragmentPro()).addToBackStack("pro");
fragmentTransaction.commit();

@ -1644,7 +1644,7 @@ public class FragmentMessages extends FragmentBase {
}
private void onActionFlagColorSelection() {
if (!Helper.isPro(getContext()) && !BuildConfig.BETA_RELEASE) {
if (!Helper.isPro(getContext())) {
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.content_frame, new FragmentPro()).addToBackStack("pro");
fragmentTransaction.commit();

Loading…
Cancel
Save