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

Commit a6ffae76 authored by Taran Singh's avatar Taran Singh
Browse files

Add missing requestCursorUpdates to InputconnectionWrapper

Add missing requestCursorUpdates(mode, filter) method in
InputConnectionWrapper.

Bug: 266630841
Test: atest CtsInputMethodTestCases
Change-Id: I9913294ce0a0d377653b491255140481e905d3dc
parent 62c9ade8
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -356,6 +356,16 @@ public class InputConnectionWrapper implements InputConnection {
        return mTarget.requestCursorUpdates(cursorUpdateMode);
    }

    /**
     * {@inheritDoc}
     * @throws NullPointerException if the target is {@code null}.
     */
    @Override
    public boolean requestCursorUpdates(@CursorUpdateMode int cursorUpdateMode,
            @CursorUpdateFilter int cursorUpdateFilter) {
        return mTarget.requestCursorUpdates(cursorUpdateMode, cursorUpdateFilter);
    }

    /**
     * {@inheritDoc}
     * @throws NullPointerException if the target is {@code null}.