I’m the author of fsrs4anki-helper. Recently, I’m developing the auto-rescheduling feature, which could reschedule cards reviewed in another device.
I added the function to the hook of sync_did_finish. After the function finished, it will use tooltip to show the result of auto-rescheduling. Here I encounter a problem:
When user enable the auto sync, syncing will be triggered when user closes the collection. The message displayed in tooltip will disappear quickly. So the user doesn’t have enough time to see the message.
Is there any way to delay the closing of collection when the tooltip shows the message? I try to use time.sleep(), but it freezes the collection, and the tooltip are delayed, too.