File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 3939
4040 </ td >
4141 </ 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 >
4251 < tr >
4352 < th > < span class ='translate '> Extended Features:</ span > </ th >
4453 < td > < label > < input type ='checkbox ' class ='vboxCheckbox ' name ='vboxSettingsDisplay3d ' /> < span class ='translate '> Enable 3D Acceleration</ span > </ label > </ td >
106115
107116
108117 $ ( '#vboxSettingsDisplayMemory' ) . slider ( 'value' , parseInt ( $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . VRAMSize ) ) ;
118+
119+ $ ( document . forms [ 'frmVboxSettings' ] . vboxSettingsGraphicsController ) . val ( $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . graphicsControllerType ) ;
109120
110121 document . forms [ 'frmVboxSettings' ] . vboxSettingsDisplay3d . checked = ( $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . accelerate3DEnabled ) ;
111122 document . forms [ 'frmVboxSettings' ] . vboxSettingsDisplay2d . checked = ( $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . accelerate2DVideoEnabled ) ;
177188
178189 $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . VRAMSize = $ ( document . forms [ 'frmVboxSettings' ] . vboxSettingsDisplayMemoryValue ) . val ( ) ;
179190
191+ $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . graphicsControllerType = $ ( document . forms [ 'frmVboxSettings' ] . vboxSettingsGraphicsController ) . val ( ) ;
192+
180193 $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . accelerate3DEnabled = document . forms [ 'frmVboxSettings' ] . vboxSettingsDisplay3d . checked ;
181194 $ ( '#vboxSettingsDialog' ) . data ( 'vboxMachineData' ) . accelerate2DVideoEnabled = document . forms [ 'frmVboxSettings' ] . vboxSettingsDisplay2d . checked ;
182195
You can’t perform that action at this time.
0 commit comments