Skip to content

Commit a676cda

Browse files
mikejurkaAndroid (Google) Code Review
authored andcommitted
Merge "Tweak recents launch app animation" into jb-dev
2 parents a989b33 + b9a38c5 commit a676cda

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/SystemUI/src/com/android/systemui/recent/RecentsPanelView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ public void handleOnClick(View view) {
790790
if (DEBUG) Log.v(TAG, "Starting activity " + intent);
791791
context.startActivity(intent, opts.toBundle());
792792
}
793-
if (!usingDrawingCache) {
793+
if (usingDrawingCache) {
794794
holder.thumbnailViewImage.setDrawingCacheEnabled(false);
795795
}
796796
}

services/java/com/android/server/wm/WindowManagerService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3237,7 +3237,7 @@ private Animation createThumbnailAnimationLocked(int transit,
32373237
if (delayed) {
32383238
a = new AlphaAnimation(1, 0);
32393239
a.setStartOffset(0);
3240-
a.setDuration(delayDuration - 50);
3240+
a.setDuration(delayDuration - 120);
32413241
a.setBackgroundColor(0xFF000000);
32423242
} else {
32433243
a = createExitAnimationLocked(transit, duration);

0 commit comments

Comments
 (0)