Mercurial > 510Connectbot
changeset 109:3ac62a543054
add debugging for function keys
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 18 Jun 2014 12:48:06 -0700 |
parents | ae3092cd9cbf |
children | 8ac79084875b |
files | src/com/five_ten_sg/connectbot/service/TerminalKeyListener.java |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/com/five_ten_sg/connectbot/service/TerminalKeyListener.java Wed Jun 18 12:00:45 2014 -0700 +++ b/src/com/five_ten_sg/connectbot/service/TerminalKeyListener.java Wed Jun 18 12:48:06 2014 -0700 @@ -137,6 +137,7 @@ * Modify the keys to make more sense to a host then pass it to the vt320. */ public boolean onKey(View v, int keyCode, KeyEvent event) { + Log.d(TAG, "onKey with key %d", keyCode); try { // skip keys if we aren't connected yet or have been disconnected if (bridge.isDisconnected()) return false;