Commit 8067f796 authored by Dietmar Maurer's avatar Dietmar Maurer

Allow to set tablet option on the GUI

parent 7e3d2c14
......@@ -103,6 +103,24 @@ Ext.define('PVE.qemu.Options', {
return text;
}
},
tablet: {
header: 'Use tablet for pointer',
defaultValue: true,
renderer: PVE.Utils.format_boolean,
editor: caps.vms['VM.Config.HWType'] ? {
xtype: 'pveWindowEdit',
subject: 'Use tablet for pointer',
items: {
xtype: 'pvecheckbox',
name: 'tablet',
checked: true,
uncheckedValue: 0,
defaultValue: 1,
deleteDefaultValue: true,
fieldLabel: gettext('Enabled')
}
} : undefined
},
acpi: {
header: 'ACPI support',
defaultValue: true,
......
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