diff --git a/cozy/ui/widgets/search_results.py b/cozy/ui/widgets/search_results.py index 4be1456e..043427f3 100644 --- a/cozy/ui/widgets/search_results.py +++ b/cozy/ui/widgets/search_results.py @@ -10,7 +10,7 @@ def __init__(self, name: str, on_click: Callable[[str], None]) -> None: selectable=False, activatable=True, use_markup=False, - tooltip_text=_("Jump to") + f" {name}", + tooltip_text=_("Jump to {artist_name}").format(artist_name=name), ) self.connect("activated", lambda *_: on_click(name))