This commit is contained in:
Ignacio Serantes
2026-03-25 12:18:19 +01:00
parent 0349155fd2
commit 56ef674d4a
9 changed files with 641 additions and 455 deletions

View File

@@ -398,7 +398,7 @@ class TagEditWidget(QWidget):
if not full_path:
return ""
words = full_path.replace('/', ' ').split()
search_terms = [f"tags:{word}" for word in words if word]
search_terms = [f"tags:'{word}'" for word in words if word]
return " ".join(search_terms)
def _get_current_query_text(self):