Remi05 / outlines

An app to help review your UI implementation.
MIT License
7 stars 0 forks source link

Improve performance around targeting elements #109

Closed Remi05 closed 1 year ago

Remi05 commented 1 year ago

Targeting elements is pretty fast, but it could be smoother and take up less resources. From my initial investigation, the call to UIAutomation.ElementFromPoint was not the limiting factor as initially thought, the HoverWatcher seemed to be the culprit. Switching to a single thread which polls the mouse positions every x ms would probably be more efficient.

Remi05 commented 1 year ago

Addressed with commit 1acb27bd2c6af47a4157986bd3a3bf84c59b35af.