Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e23f6e29 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Pop-up a video call welcome dialog upon the dialer" into atel.lnx.2.0-dev

parents ccd21274 e0e918e6
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -518,9 +518,11 @@ public class DialtactsActivity extends TransactionSafeActivity implements View.O

        if (getResources().getBoolean(
                R.bool.config_regional_video_call_welcome_dialog)) {
            if(CallUtil.isVideoEnabled(this)) {
                showVideoCallWelcomeDialog();
            }
        }
    }
    @Override
    protected void onResume() {
        Trace.beginSection(TAG + " onResume");
+1 −1
Original line number Diff line number Diff line
@@ -203,7 +203,7 @@ public class DialerUtils {
    public static boolean canShowWelcomeScreen(Context context) {
        final SharedPreferences prefs = context.getSharedPreferences(
                PREFS_MESSAGE, Context.MODE_PRIVATE);
        return prefs.getBoolean(KEY_STATE, false);
        return prefs.getBoolean(KEY_STATE, true);
    }