Replies: 2 comments
-
|
For anyone looking for a temporary workaround, I wrote an AppleScript that will do the necessary re-size of all VM windows (run from your script-running mechanism of choice): tell application "System Events"
tell application process "VirtualBuddy"
set {vm_windows, vm_windows_size} to {it, its size} of (windows whose value of attribute "AXIdentifier" is not "library")
repeat with i from 1 to length of vm_windows
set vm_window to item i of vm_windows
set vm_window_size to item i of vm_windows_size
set size of vm_window to {(item 1 of vm_window_size) - 1, item 2 of vm_window_size}
set size of vm_window to vm_window_size
end repeat
end tell
end tell |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
This seems to be the same issue as #449 like you've mentioned. Thank you for the additional details and workaround. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This issue appears reproducibly on a macOS 15.5 guest running on a macOS 15.5 host (MBP M1 Max). I believe it may be the same issue referred to here, but I have added screenshots to be really clear.
When booting the VM, the initial display viewport of the desktop is mis-aligned (note that the menu bar of the guest is cut off, and the Dock is too high). This looks like it could be related to VirtualBuddy not taking into account the window's title bar height when first setting the offset within the window.
After re-sizing the VM's window, the guest's display is properly aligned (even with the identical window dimesnsions).
Please see the attached screenshot showing the state at VM launch, and then the state after the window has been resized twice (once to get the viewport to align properly, and a second time back to the original/desired window size).
The VM display settings are as follows:

Please let me know if I can provide any other information.
Beta Was this translation helpful? Give feedback.
All reactions