Re: [Qemu-devel] [PATCH v3] ui/cocoa.m: replace scrollingDeltaY with deltaY

2018-07-12 Thread Peter Maydell
On 11 July 2018 at 22:18, Peter Maydell wrote: > On 9 July 2018 at 16:02, John Arbuckle wrote: >> The NSEvent class method scrollingDeltaY is available >> for Mac OS 10.7 and newer. Since QEMU supports Mac OS >> 10.5 and up, we need to be using a method that is >> available on these version of Ma

Re: [Qemu-devel] [PATCH v3] ui/cocoa.m: replace scrollingDeltaY with deltaY

2018-07-12 Thread G 3
On Jul 11, 2018, at 5:18 PM, Peter Maydell wrote: On 9 July 2018 at 16:02, John Arbuckle wrote: The NSEvent class method scrollingDeltaY is available for Mac OS 10.7 and newer. Since QEMU supports Mac OS 10.5 and up, we need to be using a method that is available on these version of Mac OS

Re: [Qemu-devel] [PATCH v3] ui/cocoa.m: replace scrollingDeltaY with deltaY

2018-07-11 Thread Peter Maydell
On 9 July 2018 at 16:02, John Arbuckle wrote: > The NSEvent class method scrollingDeltaY is available > for Mac OS 10.7 and newer. Since QEMU supports Mac OS > 10.5 and up, we need to be using a method that is > available on these version of Mac OS X. The deltaY > method is a method that does the

[Qemu-devel] [PATCH v3] ui/cocoa.m: replace scrollingDeltaY with deltaY

2018-07-09 Thread John Arbuckle
The NSEvent class method scrollingDeltaY is available for Mac OS 10.7 and newer. Since QEMU supports Mac OS 10.5 and up, we need to be using a method that is available on these version of Mac OS X. The deltaY method is a method that does the same thing as scrollingDeltaY and is available on Mac OS