Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 485355c

Browse files
MortimerGorobluemarvin
authored andcommitted
Make onCheckIsTextEditor return false when window is resizing. Fixes #2298. (#2313)
1 parent 8cb8529 commit 485355c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/common/shared/org/mozilla/vrbrowser/ui/widgets/WindowWidget.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1117,7 +1117,7 @@ public InputConnection onCreateInputConnection(final EditorInfo outAttrs) {
11171117

11181118
@Override
11191119
public boolean onCheckIsTextEditor() {
1120-
return mSession.isInputActive();
1120+
return !mIsResizing && mSession.isInputActive();
11211121
}
11221122

11231123

0 commit comments

Comments
 (0)