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
We currently update the entire source list in the GUI whenever a source is starred or unstarred. This is unnecessary since the star button is already toggled in the GUI.
Also, if the star job is unsuccessfully received by the server, is_starred will be updated to match what we have on the server on the next sync, which also updates the source list.
defon_update(self, result):
""" The result is a uuid for the source and boolean flag for the new state of the star. """enabled=result[1]
self.source.is_starred=enabledself.controller.update_sources()
self.setChecked(enabled)
The text was updated successfully, but these errors were encountered:
Description
We currently update the entire source list in the GUI whenever a source is starred or unstarred. This is unnecessary since the star button is already toggled in the GUI.
Also, if the star job is unsuccessfully received by the server,
is_starred
will be updated to match what we have on the server on the next sync, which also updates the source list.The text was updated successfully, but these errors were encountered: