mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-27 13:21:11 +00:00
Allow to set tablet option on the GUI
This commit is contained in:
parent
154a6c52c5
commit
defccfad1b
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user