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

Commit a8b00c88 authored by Amith Yamasani's avatar Amith Yamasani
Browse files

Logging to track down an elusive bug with Messaging app losing IME focus in landscape.

bug: 2200728
parent bcfcafe1
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -2025,7 +2025,10 @@ public class InputMethodService extends AbstractInputMethodService {
            InputConnection ic = getCurrentInputConnection();
            mExtractedText = ic == null? null
                    : ic.getExtractedText(req, InputConnection.GET_EXTRACTED_TEXT_MONITOR);
            
            if (mExtractedText == null || ic == null) {
                Log.e(TAG, "Unexpected null in startExtractingText : mExtractedText = "
                        + mExtractedText + ", input connection = " + ic);
            }
            final EditorInfo ei = getCurrentInputEditorInfo();
            
            try {