On Jun 24, 2017, at 8:14 AM, Peter Maydell wrote:
On 23 June 2017 at 21:05, Programmingkid
wrote:
This patch is incompatible with anything below Mac OS 10.10.
Oops. Thanks for the report.
We support Mac OS 10.5 and up. I was able to make this patch work
on Mac OS 10.6 by changing this li
On 23 June 2017 at 21:05, Programmingkid wrote:
> This patch is incompatible with anything below Mac OS 10.10.
Oops. Thanks for the report.
> We support Mac OS 10.5 and up. I was able to make this patch work
> on Mac OS 10.6 by changing this line:
>
> NSEventModifierFlags modifiers = [event modi
This patch is incompatible with anything below Mac OS 10.10. We support Mac OS
10.5 and up. I was able to make this patch work on Mac OS 10.6 by changing this
line:
NSEventModifierFlags modifiers = [event modifierFlags];
to this:
NSUInteger modifiers = [event modifierFlags];
This wouldn't be
On Fri, 2017-05-26 at 16:38 -0700, Ian McKellar wrote:
> I had two problems with QEMU on macOS:
> 1) Sometimes when alt-tabbing to QEMU it would act as if the 'a' key
> was pressed so I'd get 'a'.
> 2) Using Sikuli to programatically send keys to the QEMU window text
> like "f
I had two problems with QEMU on macOS:
1) Sometimes when alt-tabbing to QEMU it would act as if the 'a' key
was pressed so I'd get 'a'.
2) Using Sikuli to programatically send keys to the QEMU window text
like "foo_bar" would come out as "fooa-bar".
They looked similar and af