Custom Query (16363 matches)
Results (742 - 744 of 16363)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #5684 | obsolete | Lose access to cmd-H and cmd-Q if host key redefined -> Fixed in SVN | ||
| Description |
As discussed in http://www.virtualbox.org/ticket/4866, if the host key is not bound to the left cmd key, cmd-H and cmd-Q cannot be used anymore. This is a regression in 3.1.0 and was working fine in all previous versions. |
|||
| #5687 | obsolete | Screen size does not auto-adjust with openSUSE 11.2 as guest | ||
| Description |
The 11.1 RPMs appear to install correctly in openSUSE 11.2 but there is at least one issue when adjusting the screen size. Often when the VirtualBox host window is resized, the openSUSE guest screen size is not automatically adjusted even though Auto-resize Guest Display is selected. If I go into Configure Display within the openSUSE guest and select 1280x901 (Auto) it usually works, but after changing VBox host window size (e.g. switch from full screen to tiled) it switches back to some other resolution in openSUSE and does not auto-resize anymore. Very annoying bug that did not exist in 11.1. Vista x64 is the host OS. |
|||
| #5692 | obsolete | OpenGL - ChoosePixelFormat Deadlock | ||
| Description |
I'm running a program that hangs with the following c++ code: bool initopengl(int win)
{
int i;
// get the device context (DC)
hdc[win] = GetDC(hwdraw[win]);
if (hdc[win] == NULL) return false;
char xstr[MAX_PATH];
// set the pixel format for the DC
PIXELFORMATDESCRIPTOR pfd;
ZeroMemory(&pfd, sizeof pfd);
pfd.nSize = sizeof pfd;
pfd.nVersion = 1;
pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
pfd.iPixelType = PFD_TYPE_RGBA;
int format = ChoosePixelFormat(hdc[win], &pfd);//hangs in here
....
As mentioned it hangs (or enters in a deadlock)when calling ChoosePixelFormat function. This code runs on the host. I'm using VS 2008 (not with sp1) The host is MS Windows XP SP3 updated. The guest is MS Windows XP SP3 (didn't make yet the updates). I'm using VB 3.1.0 with the associated GA installed, and with the following configuration for the VM: System:
Display:
My video card is an ATI Radeon HD 3870 with the driver version 8.650.0.0 Another consequence of this situation is that the VM hangs when shutdown, whether i stop debugging or if i'm running the generated .exe kill the process. I attached 3 files: 1 with the VB log until the moment that hangs when calling ChoosePixelFormat(VBoxlog1), the second with the log when shutting down (Vboxlog2) and other with the result in the Output window of VS2008. |
|||

