disable extra logging

This commit is contained in:
Vadim Lopatin 2016-05-18 11:49:12 +03:00
parent a855982cd4
commit b728a32b80
1 changed files with 2 additions and 2 deletions

View File

@ -1113,10 +1113,10 @@ public:
if (keyEvent.assigned && keyEvent(this, event)) if (keyEvent.assigned && keyEvent(this, event))
return true; // processed by external handler return true; // processed by external handler
if (event.action == KeyAction.KeyDown) { if (event.action == KeyAction.KeyDown) {
Log.d("Find key action for key = ", event.keyCode, " flags=", event.flags); //Log.d("Find key action for key = ", event.keyCode, " flags=", event.flags);
Action action = findKeyAction(event.keyCode, event.flags); // & (KeyFlag.Shift | KeyFlag.Alt | KeyFlag.Control | KeyFlag.Menu) Action action = findKeyAction(event.keyCode, event.flags); // & (KeyFlag.Shift | KeyFlag.Alt | KeyFlag.Control | KeyFlag.Menu)
if (action !is null) { if (action !is null) {
Log.d("Action found: ", action.id, " ", action.labelValue.id); //Log.d("Action found: ", action.id, " ", action.labelValue.id);
return dispatchAction(action); return dispatchAction(action);
} }
} }