Skip to content

Commit

Permalink
Fix favorite display bug on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
user202729 committed Aug 7, 2023
1 parent ad0405e commit c48d17b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plover/gui_qt/dictionaries_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ def _on_dictionaries_loaded(self, loaded_dictionaries):
continue
item.loaded = loaded
updated_rows.add(item.row)
updated_rows.update(self._update_favorite())
if not updated_rows:
return
updated_rows.update(self._update_favorite())
self._updated_rows(updated_rows)

def _on_dictionary_state_changed(self, filename, d):
Expand Down

0 comments on commit c48d17b

Please sign in to comment.