diff options
| author | 2018-03-30 10:16:09 -0400 | |
|---|---|---|
| committer | 2018-03-30 10:16:09 -0400 | |
| commit | 24f221350569a6820da1d205fdd1cd9d162dba1d (patch) | |
| tree | b5220a9be4359e1ef55cf616136b63d37a98b62a | |
| parent | d490937854d06e29d9214fc030b18b192ce946dd (diff) | |
Show media stream always when a11y is active stream
Test: manual
Bug: 76438403
Change-Id: I9da010b9bb03dfdcb48fc15e3c6d538d540f8f11
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/volume/VolumeDialogImpl.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/volume/VolumeDialogImpl.java b/packages/SystemUI/src/com/android/systemui/volume/VolumeDialogImpl.java index acdd0c71b491..6f71e55b0d3c 100644 --- a/packages/SystemUI/src/com/android/systemui/volume/VolumeDialogImpl.java +++ b/packages/SystemUI/src/com/android/systemui/volume/VolumeDialogImpl.java @@ -603,7 +603,8 @@ public class VolumeDialogImpl implements VolumeDialog { if (row.defaultStream) { return activeRow.stream == STREAM_RING || activeRow.stream == STREAM_ALARM - || activeRow.stream == STREAM_VOICE_CALL; + || activeRow.stream == STREAM_VOICE_CALL + || activeRow.stream == STREAM_ACCESSIBILITY; } return false; |