From 099b443dc88339a0c971d709235980f8bc4f7faf Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Tue, 5 Jul 2022 00:58:15 +0200 Subject: [PATCH] Tell user where the downloaded file is stored Signed-off-by: Steffen Jaeckel --- src/tools/http_download.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/http_download.c b/src/tools/http_download.c index bbbccce1..9920caa1 100644 --- a/src/tools/http_download.c +++ b/src/tools/http_download.c @@ -190,8 +190,8 @@ http_file_get(void* userdata) } else { if (!download->cancel) { http_print_transfer_update(download->window, download->url, - "Downloading '%s': done", - download->url); + "Downloading '%s': done\nSaved to '%s'", + download->url, download->filename); win_mark_received(download->window, download->url); } }