We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27b6d6a commit f313f13Copy full SHA for f313f13
packages/SystemUI/src/com/android/systemui/volume/VolumeDialogImpl.java
@@ -570,8 +570,11 @@ private void cleanExpandedRows() {
570
}
571
int x = (int) (mLeftVolumeRocker ? 0 : (3 * mWidth + 2 * mSpacer));
572
int endRadius = (int) Math.hypot(3 * mWidth + 2 * mSpacer, mHeight);
573
+ try{
574
mCurrAnimator = circularExit(mMediaOutputScrollView, x, endRadius);
575
mCurrAnimator.start();
576
+ }catch(Exception ignored){
577
+ }
578
} else {
579
Util.setVisOrGone(mMediaOutputScrollView, false);
580
Util.setVisOrGone(mDialogRowsView, true);
0 commit comments