Skip to content

Commit

Permalink
fix: show correct unlinked files count (#653)
Browse files Browse the repository at this point in the history
  • Loading branch information
SkeleyM authored Dec 22, 2024
1 parent b209abb commit 4c3ff42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tagstudio/src/qt/modals/fix_unlinked.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,4 @@ def set_missing_count(self, count: int | None = None):
# disable buttons if there are no files to fix
self.search_button.setDisabled(self.missing_count == 0)
self.delete_button.setDisabled(self.missing_count == 0)
self.missing_count_label.setText(f"Unlinked Entries: {count}")
self.missing_count_label.setText(f"Unlinked Entries: {self.missing_count}")

0 comments on commit 4c3ff42

Please sign in to comment.