Commit 4de4f7d1 authored by Michel Loiseleur's avatar Michel Loiseleur Committed by Dietmar Maurer

Add Tab key to SendKey menu.

It's a workaround for b#16
Signed-off-by: 's avatarMichel Loiseleur <michel@loiseleur.com>
parent 4f19868f
......@@ -30,6 +30,11 @@ Ext.define('PVE.qemu.SendKeyMenu', {
menu: new Ext.menu.Menu({
height: 200,
items: [
{
text: 'Tab', handler: function() {
sendKey('tab');
}
},
{
text: 'Ctrl-Alt-Delete', handler: function() {
sendKey('ctrl-alt-delete');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment