Skip to content

Commit 4c3ff42

Browse files
authored
fix: show correct unlinked files count (#653)
1 parent b209abb commit 4c3ff42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tagstudio/src/qt/modals/fix_unlinked.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,4 @@ def set_missing_count(self, count: int | None = None):
144144
# disable buttons if there are no files to fix
145145
self.search_button.setDisabled(self.missing_count == 0)
146146
self.delete_button.setDisabled(self.missing_count == 0)
147-
self.missing_count_label.setText(f"Unlinked Entries: {count}")
147+
self.missing_count_label.setText(f"Unlinked Entries: {self.missing_count}")

0 commit comments

Comments
 (0)