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

Commit fd0c7110 authored by Riley Jones's avatar Riley Jones
Browse files

Fix for next button contentdescription in TextReadingPreviewPreference

Test: Enable talkback and verify next button outputs a correct description
Bug: None
Flag: EXEMPT small cleanup change
Change-Id: Ib71e2a42b810b0ba5d92ec630f90ca7a32fbba46
parent 9e1e4f18
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -120,7 +120,7 @@ public class TextReadingPreviewPreference extends Preference {
                R.string.preview_pager_previous_button));
        nextButton.setOnClickListener((view) ->
                viewPager.setCurrentItem(getCurrentItem() + 1));
        previousButton.setContentDescription(getContext().getString(
        nextButton.setContentDescription(getContext().getString(
                R.string.preview_pager_next_button));
    }