Skip to content

Commit

Permalink
Update cozy/ui/widgets/search_results.py
Browse files Browse the repository at this point in the history
Co-authored-by: Naglis Jonaitis <[email protected]>
  • Loading branch information
rdbende and naglis authored Jan 5, 2024
1 parent f2062a2 commit f4bf991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cozy/ui/widgets/search_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit f4bf991

Please sign in to comment.