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

Commit 50057943 authored by Andrei Stingaceanu's avatar Andrei Stingaceanu Committed by Android (Google) Code Review
Browse files

Merge "Cannot select text after rotation in extract mode" into mnc-dev

parents a408061c da589dff
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -409,8 +409,8 @@ public class IInputConnectionWrapper extends IInputContext.Stub {
            }
            case DO_REPORT_FULLSCREEN_MODE: {
                InputConnection ic = mInputConnection.get();
                if (ic == null || !isActive()) {
                    Log.w(TAG, "showStatusIcon on inactive InputConnection");
                if (ic == null) {
                    Log.w(TAG, "reportFullscreenMode on inexistent InputConnection");
                    return;
                }
                ic.reportFullscreenMode(msg.arg1 == 1);