Add full name of the destination to tooltip

This commit is contained in:
Antonia 2024-02-09 15:08:03 +01:00
parent c8416f1349
commit d6f2adb089

View file

@ -66,7 +66,7 @@ if checked_in or args.last_checkin is not None :
st = st + " (+%d)" % s["delay"]
if "train" in response :
train = response["train"]
tooltip = f'{train["type"]} {train["line"]} ({train["no"]})'
tooltip = f'{train["type"]} {train["line"]} ({train["no"]}) to {s["name"]}'