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

Commit b23ce29b authored by Ben Kwa's avatar Ben Kwa
Browse files

Return true when keystrokes are handled in BaseKeyListener.

BUG=27340791

Change-Id: If9a61c19eea2c1c1833f7ec45c8a474048470aaa
parent 6b288c27
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }
}