jawa0 / aish3

AI LLM Agent with memories
Apache License 2.0
3 stars 1 forks source link

Fix crash when pressing Ctrl key #90

Closed mentatbot[bot] closed 3 months ago

mentatbot[bot] commented 3 months ago

Resolved issue #89 where pressing or holding the Ctrl key caused the app to crash with an unhandled exception. The crash was due to attempting to unpack a NoneType object returned by get_mouse_position. Added a check to ensure get_mouse_position does not return None before unpacking its values.

Closes #89