From f4bf9915d4cc660386d711c4661d89ba1c633f18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedek=20D=C3=A9v=C3=A9nyi?= Date: Fri, 5 Jan 2024 13:28:26 +0100 Subject: [PATCH] Update cozy/ui/widgets/search_results.py Co-authored-by: Naglis Jonaitis <827324+naglis@users.noreply.github.com> --- cozy/ui/widgets/search_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))