Added a "d" keybinding for delete. from the message view
This commit is contained in:
parent
c8498d46f3
commit
27a0efcf1d
1 changed files with 1 additions and 0 deletions
|
@ -105,6 +105,7 @@ public class MessageView extends Activity
|
|||
public boolean onKeyDown(int keyCode, KeyEvent event) {
|
||||
switch (keyCode) {
|
||||
case KeyEvent.KEYCODE_DEL: { onDelete(); return true;}
|
||||
case KeyEvent.KEYCODE_D: { onDelete(); return true;}
|
||||
case KeyEvent.KEYCODE_F: { onForward(); return true;}
|
||||
case KeyEvent.KEYCODE_A: { onReplyAll(); return true; }
|
||||
case KeyEvent.KEYCODE_R: { onReply(); return true; }
|
||||
|
|
Loading…
Reference in a new issue