Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fc47618c authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Send gesture cancellation on correct thread" into udc-dev am: 2e0f3af1

parents 6da64935 2e0f3af1
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -418,12 +418,15 @@ final class RemoteInputConnectionImpl extends IRemoteInputConnection.Stub {
        });
    }

    @Dispatching(cancellable = false)
    @Override
    public void cancelCancellationSignal(IBinder token) {
        if (mBeamer == null) {
            return;
        }
        dispatch(() -> {
            mBeamer.cancel(token);
        });
    }

    @Override