Custom Query (16363 matches)
Results (58 - 60 of 16363)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #967 | obsolete | Error message when disconnecting USB from VM | ||
| Description |
When I disconnect a USB device (e.g. printer) that from the host that was assigned to a VM I can an error message. I think it would be better if the VM silently disconnect the usb device from the guess and automatically reconnects it when the device is reattached |
|||
| #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. |
|||
| #978 | obsolete | Seamless: Underlying windows not redrawn | ||
| Description |
If you have "seamless windows" activated and if you don't have the taskbar on the lower edge of the screen, there are problems redrawing windows that lie behind the seamless windows. Means if you open a window and then pull it away or close it, the space where the window was is only partially redrawn. See screenshot for easier understanding. regards, Atmostrophic |
|||

