You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the UI, maybe we could change the search icon next to the input be a spinner when something is running a bit longer. For the plugin code that could look something like
with self.spinner():
result = self.google_translate(text, src, dest)
This is a bit simpler than Gtk.Spinner, which doesn't seem to actually
spin if some code is blocking. Some kind of an async dance would
probably be required to make that work as intended.
There's a bizarre need for a tiny sleep here for the icon to actually
change. It could be that the 1/100 s that is enough on my system might
not be enough on someone else's system.
Closes#18
For the UI, maybe we could change the search icon next to the input be a spinner when something is running a bit longer. For the plugin code that could look something like
If that looks useful, I could look into that.
Originally posted by @otsaloma in #17 (comment)
The text was updated successfully, but these errors were encountered: