Return true when keystrokes are handled in BaseKeyListener.

BUG=27340791

Change-Id: If9a61c19eea2c1c1833f7ec45c8a474048470aaa
This commit is contained in:
Ben Kwa
2016-02-24 15:47:08 -08:00
parent 6b288c27b9
commit b23ce29b8f

View File

@@ -437,6 +437,7 @@ public abstract class BaseKeyListener extends MetaKeyKeyListener
if (handled) {
adjustMetaAfterKeypress(content);
return true;
}
return super.onKeyDown(view, content, keyCode, event);
@@ -470,4 +471,3 @@ public abstract class BaseKeyListener extends MetaKeyKeyListener
return true;
}
}