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,9 +30,14 @@ Ext.define('PVE.qemu.SendKeyMenu', { ...@@ -30,9 +30,14 @@ Ext.define('PVE.qemu.SendKeyMenu', {
menu: new Ext.menu.Menu({ menu: new Ext.menu.Menu({
height: 200, height: 200,
items: [ items: [
{
text: 'Tab', handler: function() {
sendKey('tab');
}
},
{ {
text: 'Ctrl-Alt-Delete', handler: function() { text: 'Ctrl-Alt-Delete', handler: function() {
sendKey('ctrl-alt-delete'); 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