Drop parenthetical hints from search placeholder text — live search and -negative tags can be inferred

This commit is contained in:
pax 2026-04-07 15:46:35 -05:00
parent c322b3d2b0
commit 7d02aa8588
3 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ class BookmarksView(QWidget):
top.addWidget(manage_btn)
self._search_input = QLineEdit()
self._search_input.setPlaceholderText("Search bookmarks by tag (live, Enter to commit)")
self._search_input.setPlaceholderText("Search bookmarks by tag")
# Enter still triggers an immediate search.
self._search_input.returnPressed.connect(self._do_search)
# Live search via debounced timer: every keystroke restarts a

View File

@ -87,7 +87,7 @@ class LibraryView(QWidget):
top.addWidget(refresh_btn)
self._search_input = QLineEdit()
self._search_input.setPlaceholderText("Search tags (live, Enter to commit)")
self._search_input.setPlaceholderText("Search tags")
# Enter still triggers an immediate refresh.
self._search_input.returnPressed.connect(self.refresh)
# Live search via debounced timer. Library refresh is heavier

View File

@ -31,7 +31,7 @@ class SearchBar(QWidget):
layout.setSpacing(6)
self._input = QLineEdit()
self._input.setPlaceholderText("Search tags... (supports -negatives)")
self._input.setPlaceholderText("Search tags...")
self._input.returnPressed.connect(self._do_search)
# Dropdown arrow inside search bar