From e3722f259104876c66dec2669389b4052d801fc5 Mon Sep 17 00:00:00 2001 From: ITotalJustice <47043333+ITotalJustice@users.noreply.github.com> Date: Thu, 26 Dec 2024 18:29:03 +0000 Subject: [PATCH] include name when prompting the user to select which asset to download --- sphaira/source/ui/menus/ghdl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphaira/source/ui/menus/ghdl.cpp b/sphaira/source/ui/menus/ghdl.cpp index cd848ea..431d531 100644 --- a/sphaira/source/ui/menus/ghdl.cpp +++ b/sphaira/source/ui/menus/ghdl.cpp @@ -305,7 +305,7 @@ Menu::Menu() : MenuBase{"GitHub"_i18n} { asset_items.emplace_back(p.name); } - App::Push(std::make_shared("Select asset to download"_i18n, asset_items, [this](auto op_index){ + App::Push(std::make_shared("Select asset to download for "_i18n + GetEntry().name, asset_items, [this](auto op_index){ if (!op_index) { return; } @@ -328,7 +328,7 @@ Menu::Menu() : MenuBase{"GitHub"_i18n} { asset_items.emplace_back(p.name); } - App::Push(std::make_shared("Select asset to download"_i18n, asset_items, [this](auto op_index){ + App::Push(std::make_shared("Select asset to download for "_i18n + GetEntry().name, asset_items, [this](auto op_index){ if (!op_index) { return; }