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

Commit 0ebdfc66 authored by Saumya Prakash's avatar Saumya Prakash Committed by Android (Google) Code Review
Browse files

Merge "Match displayed instruction with voiceover text." into udc-dev

parents 70da3e64 fbeb143e
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -412,10 +412,12 @@ abstract class TutorialController implements BackGestureAttemptCallback,
        }

        mFeedbackTitleView.setText(titleResId);
        mFeedbackSubtitleView.setText(spokenSubtitleResId == NO_ID
        mFeedbackSubtitleView.setText(
                ENABLE_NEW_GESTURE_NAV_TUTORIAL.get() || spokenSubtitleResId == NO_ID
                        ? mContext.getText(subtitleResId)
                        : Utilities.wrapForTts(
                        mContext.getText(subtitleResId), mContext.getString(spokenSubtitleResId)));
                                mContext.getText(subtitleResId),
                                mContext.getString(spokenSubtitleResId)));
        if (isGestureSuccessful) {
            if (mTutorialFragment.isAtFinalStep()) {
                showActionButton();