ryanrixxh / timestamper

Capture the moment stay in the moment. Timestamper helps Twitch streamers create markers and post them to Twitch! It call also save to local marker files.
https://timestamper.fly.dev/
1 stars 0 forks source link

Add ability to cancel hotkey listener on mouse click #13

Closed ryanrixxh closed 1 year ago

ryanrixxh commented 1 year ago

Currently if the user tries to click something while the program is listening for a new hotkey, the program hangs because it is running on the main thread. It needs to stay running on the main thread because other parts of the program shouldn't be usable while the listener is on, but it also needs to be cancelled if the user clicks away.

Right now only changing the hotkey or pressing escape cancels the hotkey listener.

ryanrixxh commented 1 year ago

Fixed with PR #16