Thanks Michael,

I searched and searched but I got lost trying to find the actual hiccup.


Perry


On 10/31/2011 06:11 PM, Michael Thayer wrote:
Hello Perry,

On 10/27/2011 09:28 PM, Perry Halbert wrote:
I have another issue that I am starting to think has something to
do with the new builds. In Win7 and Vista (shudder I know but it must
be tested) I can not resize the guest. log shows a video hint but the
actual guest area does not grow. I am using the release 4.1.4 now and
it was working just fine until the update from svn r39104.
My fault, and thanks for spotting it. The following patch (soon to be committed to svn) should fix it.

Regards,

Michael
--- src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp (revision 74543) +++ src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp (working copy)
@@ -635,7 +635,7 @@
             maxSize = QSize(0, 0);
     }
     ASMAtomicWriteU64(&m_u64MaxGuestSize,
-                      RT_MAKE_U64(maxSize.width(), maxSize.height()));
+                      RT_MAKE_U64(maxSize.height(), maxSize.width()));
 }

 QSize UIMachineView::maxGuestSize()

_______________________________________________
vbox-dev mailing list
[email protected]
https://www.virtualbox.org/mailman/listinfo/vbox-dev

Reply via email to