diff options
| author | 2024-03-21 09:59:52 +0000 | |
|---|---|---|
| committer | 2024-03-21 09:59:52 +0000 | |
| commit | 2315f5eac229b3057f39ad819bfdf3733243030f (patch) | |
| tree | 1614455e5d7258d52c75a58fefaeceaa25a525ef | |
| parent | e084d5332ce697ef1fcf37552e9a8a1e7c754062 (diff) | |
| parent | 5f6d522a4103c02e4d643eb427d3d1a4b7e76bcb (diff) | |
Merge "Don't specify creator BAL options while sending PI" into main
| -rw-r--r-- | libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/DragToDesktopTransitionHandler.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/DragToDesktopTransitionHandler.kt b/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/DragToDesktopTransitionHandler.kt index af26e2980afe..b830a41b6671 100644 --- a/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/DragToDesktopTransitionHandler.kt +++ b/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/DragToDesktopTransitionHandler.kt @@ -15,6 +15,7 @@ import android.content.Context import android.content.Intent import android.content.Intent.FILL_IN_COMPONENT import android.graphics.Rect +import android.os.Bundle import android.os.IBinder import android.os.SystemClock import android.view.SurfaceControl @@ -124,7 +125,7 @@ class DragToDesktopTransitionHandler( options.toBundle() ) val wct = WindowContainerTransaction() - wct.sendPendingIntent(pendingIntent, launchHomeIntent, options.toBundle()) + wct.sendPendingIntent(pendingIntent, launchHomeIntent, Bundle()) val startTransitionToken = transitions .startTransition(TRANSIT_DESKTOP_MODE_START_DRAG_TO_DESKTOP, wct, this) |