am acce1aa5
: Make sure to obtain the IC before requesting CursorAnchorInfo
* commit 'acce1aa59eac6816fe3ce1fcb014666fc71a40f1': Make sure to obtain the IC before requesting CursorAnchorInfo
This commit is contained in:
commit
8d0d236394
1 changed files with 8 additions and 2 deletions
|
@ -924,8 +924,14 @@ public final class RichInputConnection {
|
|||
*/
|
||||
public boolean requestUpdateCursorAnchorInfo(final boolean enableMonitor,
|
||||
final boolean requestImmediateCallback) {
|
||||
final boolean scheduled = InputConnectionCompatUtils.requestUpdateCursorAnchorInfo(mIC,
|
||||
enableMonitor, requestImmediateCallback);
|
||||
mIC = mParent.getCurrentInputConnection();
|
||||
final boolean scheduled;
|
||||
if (null != mIC) {
|
||||
scheduled = InputConnectionCompatUtils.requestUpdateCursorAnchorInfo(mIC,
|
||||
enableMonitor, requestImmediateCallback);
|
||||
} else {
|
||||
scheduled = false;
|
||||
}
|
||||
mCursorAnchorInfoMonitorEnabled = (scheduled && enableMonitor);
|
||||
return scheduled;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue