mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-28 15:56:49 +00:00
Correct QuickStep interaction handler.
With the current implementation, all interactions happen on the main view, preventing any button or clickable object from working. Fix: 188775840 Test: Using an App Widget with checkboxes Change-Id: I1ec6391a36b6a3795545acb5e08dde0d3a2b2ac8
This commit is contained in:
@@ -51,7 +51,7 @@ class QuickstepInteractionHandler implements RemoteViews.InteractionHandler {
|
||||
return RemoteViews.startPendingIntent(hostView, pendingIntent,
|
||||
remoteResponse.getLaunchOptions(view));
|
||||
}
|
||||
Pair<Intent, ActivityOptions> options = remoteResponse.getLaunchOptions(hostView);
|
||||
Pair<Intent, ActivityOptions> options = remoteResponse.getLaunchOptions(view);
|
||||
ActivityOptionsWrapper activityOptions = mLauncher.getAppTransitionManager()
|
||||
.getActivityLaunchOptions(mLauncher, hostView);
|
||||
if (Utilities.ATLEAST_S && !pendingIntent.isActivity()) {
|
||||
|
||||
Reference in New Issue
Block a user