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

Commit a1da0b8d authored by Ken Lin's avatar Ken Lin Committed by Android (Google) Code Review
Browse files

Merge "Correct the resolution illustration at the setting page" into udc-dev

parents a34ab52d d8c6dd4f
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -251,10 +251,10 @@ public class ScreenResolutionFragment extends RadioButtonPickerFragment {


        if (TextUtils.equals(
        if (TextUtils.equals(
                mScreenResolutionOptions[ScreenResolutionController.HIGHRESOLUTION_IDX], key)) {
                mScreenResolutionOptions[ScreenResolutionController.HIGHRESOLUTION_IDX], key)) {
            preference.setLottieAnimationResId(R.drawable.screen_resolution_1080p);
            preference.setLottieAnimationResId(R.drawable.screen_resolution_high);
        } else if (TextUtils.equals(
        } else if (TextUtils.equals(
                mScreenResolutionOptions[ScreenResolutionController.FULLRESOLUTION_IDX], key)) {
                mScreenResolutionOptions[ScreenResolutionController.FULLRESOLUTION_IDX], key)) {
            preference.setLottieAnimationResId(R.drawable.screen_resolution_1440p);
            preference.setLottieAnimationResId(R.drawable.screen_resolution_full);
        }
        }
    }
    }