summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Miranda Kephart <mkephart@google.com> 2024-05-24 13:13:06 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2024-05-24 13:13:06 +0000
commitbad3348bc8fda24d281a3b124d87e07df268b74b (patch)
tree1e3a37fcc4434b8226a85ce98b57ecf00ce62d1d
parent2c4120b2d12a528753e485c1d7af500c264769b4 (diff)
parent21614e0e8b9099cd24358f87d42fb510b7f38eb0 (diff)
Merge "Launch scrolling screenshots directly from ScreenshotController" into 24D1-dev
-rw-r--r--packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotController.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotController.java b/packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotController.java
index 5e428685f232..a2723ce1d9ea 100644
--- a/packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotController.java
+++ b/packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotController.java
@@ -661,7 +661,7 @@ public class ScreenshotController {
() -> {
final Intent intent = ActionIntentCreator.INSTANCE.createLongScreenshotIntent(
owner, mContext);
- mActionIntentExecutor.launchIntentAsync(intent, owner, true, null, null);
+ mContext.startActivity(intent);
},
mViewProxy::restoreNonScrollingUi,
mViewProxy::startLongScreenshotTransition);