From 19fa12fe60a3182cdea86a40e4f6089e93df6e49 Mon Sep 17 00:00:00 2001 From: 283375 Date: Sat, 23 Sep 2023 22:53:04 +0800 Subject: [PATCH] fix: `ignored` tag --- ui/components/projectEntry_Classify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/components/projectEntry_Classify.py b/ui/components/projectEntry_Classify.py index 7c5c1f5..341a1a5 100644 --- a/ui/components/projectEntry_Classify.py +++ b/ui/components/projectEntry_Classify.py @@ -79,7 +79,7 @@ class ProjectEntry_Classify(Ui_ProjectEntry_Classify, QWidget): self.frame.layout().removeWidget(tagLabel) tagLabel.deleteLater() - for tag in self.project.tags: + for tag in self.project.tags + ["ignored"]: tagLabel = TagLabel(self) tagLabel.tag = tag tagLabel.project = project