Jonathan Gilbert
Jonathan Gilbert
There are some OS X-specific warnings that I have no idea what to do with: ``` Warning: warning: [email protected]: src/platform/macos.mm:96:18: warning: 'AuthorizationExecuteWithPrivileges' is deprecated: first deprecated in macOS 10.7 [-Wdeprecated-declarations]...
Also, my initial changes and observation of no more build warnings was on a Windows machine. I'm at my Linux machine now, and see a number of warnings that don't...
There's another unused symbol warning that has the "feel" of a bug to it. It might just legitimately be unused, but since the last time this happened it was actually...
Also, it might improve code readability if it did a `break` out of the outer loop, to explicitly acknowledge that it isn't using that retry logic any more past the...
> > The cursor must move kMouseControlDistance pixels in a single event in order to regain control > > I do not think we should change this behavior. Really? It...
Here's a video of my experience: https://github.com/user-attachments/assets/8ca506f5-522d-43cb-9eeb-bbf68c31bdd9
And this is with the changes in this PR: https://github.com/user-attachments/assets/6d4dfb5c-d350-4d7d-8d4b-34c2af14271c
I've got an updated implementation that does what I outlined in the thread earlier: It tracks a short history of the mouse's movement and tallies up the _actual distance travelled_...
That final warning goes away with ``` edition = "2015" ``` ...in `Cargo.toml`. I don't know enough about Rust to know if this is a safe change or not, though.