Skip to content

Commit

Permalink
Add tooltip text
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvladus committed May 25, 2024
1 parent e328f6a commit 66ae4f5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion errands/widgets/base/base_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ def __init__(self):
def __build_ui(self):
search_bar = Gtk.SearchBar()
search_entry = Gtk.SearchEntry(
hexpand=True, search_delay=100, margin_start=10, margin_end=10
hexpand=True,
search_delay=100,
margin_start=10,
margin_end=10,
placeholder_text=_("Search by text, notes or tags"),
)
search_entry.connect("search-changed", self._on_filter_text_entry)
search_bar.set_child(
Expand Down

0 comments on commit 66ae4f5

Please sign in to comment.