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

Commit bc823857 authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

Fix issue #5260129: Suggestion strip in Talk app not showing all the time

Change-Id: Ibac6138f3b3b0c3850a30d2c432495aa57b7f3f1
parent a9390979
Loading
Loading
Loading
Loading
+5 −0
Original line number Original line Diff line number Diff line
@@ -1193,6 +1193,11 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
        }
        }
        super.setEnabled(enabled);
        super.setEnabled(enabled);
        prepareCursorControllers();
        prepareCursorControllers();
        if (enabled) {
            // Make sure IME is updated with current editor info.
            InputMethodManager imm = InputMethodManager.peekInstance();
            if (imm != null) imm.restartInput(this);
        }
    }
    }


    /**
    /**