Custom Query (16363 matches)
Results (1078 - 1080 of 16363)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #972 | fixed | Fullscreen mode does not work well in Xubuntu | ||
| Description |
In xubuntu 7.10 host when I set the VM to show in full screen the top and bottom panels (from xubuntu taskbars) are still visible. |
|||
| #973 | obsolete | Supress dialog box when closing a VM Guest | ||
| Description |
The code below is designed to achive the following "Close the virtual machine window (or shutdown the host OS) and the virtual machine's guest OS shuts down or suspends gracefully, then the vm window closes automatically." In other words prevent the dialog box from appearing when closing a VM session. Here is a suggested change in the file trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp (R5923) 1199 /* The stuck VM can only be powered off; disable anything
1200 * else and choose PowerOff */
1201 dlg.rbSave->setEnabled (false);
1202 dlg.buttonGroup->setButton (dlg.buttonGroup->id (dlg.rbPowerOff));
1203 }
1204
1205 bool wasShutdown = false;
bool dialogAccepted = true;
QStringList suppressCloseDialog =
QStringList::split (',', cmachine.GetExtraData (VBoxDefs::GUI_SupressCloseDialog));
if (supressCloseDialog [0] != 'Yes')
{
dialogAccepted = (dlg.exec() == QDialog::Accepted);
}
1206
1207 if (dialogAccepted)
1208 {
1209 CConsole cconsole = console->console();
1210
1211 if (dlg.rbSave->isChecked())
Not sure if the code is correct as I havent done much c++ coding, but what it achieves is that if "GUI_SupressCloseDialog" is set to "Yes" then do not show the dialog box but instead close VM according to the action set in "GUI_LastCloseAction" or the default close action if its not set. |
|||
| #974 | fixed | vboxdrv, segfault build from svn r6055 | ||
| Description |
[ 209.654313] vboxdrv: Trying to deactivate the NMI watchdog permanently... [ 209.654318] vboxdrv: Successfully done. [ 209.654578] vboxdrv: Successfully loaded version 1.5.51_OSE (interface 0x00060000). [ 229.615093] vboxdrv: Trying to deactivate the NMI watchdog permanently... [ 229.615097] vboxdrv: Successfully done. [ 229.615408] vboxdrv: Successfully loaded version 1.5.51_OSE (interface 0x00060000). [ 245.573077] VirtualBox[6922]: segfault at 0000000100000018 rip 00002ac61c58046f rsp 00007fff9006d7f0 error 4 host: ubuntu gutsy amd64 |
|||

