erisu commented on a change in pull request #1157:
URL: https://github.com/apache/cordova-android/pull/1157#discussion_r563447227
##########
File path: framework/src/org/apache/cordova/CordovaWebViewImpl.java
##########
@@ -255,7 +255,12 @@ public WrapperView(Context context, CordovaWebViewEngine
engine) {
@Override
public boolean dispatchKeyEvent(KeyEvent event) {
- return engine.getView().dispatchKeyEvent(event);
+ boolean ret = engine.getView().dispatchKeyEvent(event);
+ if (! ret) {
Review comment:
```suggestion
if (!ret) {
```
That space :D
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]