File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 39
39
40
40
</ td >
41
41
</ tr >
42
+ < tr >
43
+ < th > < span class ='translate '> Graphics Controller:</ span > </ th >
44
+ < td > < select name ='vboxSettingsGraphicsController '>
45
+ < option value ='Null '> Null</ option >
46
+ < option value ='VBoxVGA '> VBoxVGA</ option >
47
+ < option value ='VMSVGA '> VMSVGA</ option >
48
+ < option value ='VBoxSVGA '> VBoxSVGA</ option >
49
+ </ select > </ td >
50
+ </ tr >
42
51
< tr >
43
52
< th > < span class ='translate '> Extended Features:</ span > </ th >
44
53
< td > < label > < input type ='checkbox ' class ='vboxCheckbox ' name ='vboxSettingsDisplay3d ' /> < span class ='translate '> Enable 3D Acceleration</ span > </ label > </ td >
106
115
107
116
108
117
$ ( '#vboxSettingsDisplayMemory' ) . slider ( 'value' , parseInt ( $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . VRAMSize ) ) ;
118
+
119
+ $ ( document . forms [ 'frmVboxSettings' ] . vboxSettingsGraphicsController ) . val ( $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . graphicsControllerType ) ;
109
120
110
121
document . forms [ 'frmVboxSettings' ] . vboxSettingsDisplay3d . checked = ( $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . accelerate3DEnabled ) ;
111
122
document . forms [ 'frmVboxSettings' ] . vboxSettingsDisplay2d . checked = ( $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . accelerate2DVideoEnabled ) ;
177
188
178
189
$ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . VRAMSize = $ ( document . forms [ 'frmVboxSettings' ] . vboxSettingsDisplayMemoryValue ) . val ( ) ;
179
190
191
+ $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . graphicsControllerType = $ ( document . forms [ 'frmVboxSettings' ] . vboxSettingsGraphicsController ) . val ( ) ;
192
+
180
193
$ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . accelerate3DEnabled = document . forms [ 'frmVboxSettings' ] . vboxSettingsDisplay3d . checked ;
181
194
$ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . accelerate2DVideoEnabled = document . forms [ 'frmVboxSettings' ] . vboxSettingsDisplay2d . checked ;
182
195
You can’t perform that action at this time.
0 commit comments