From 5caac0b693b6c33446c155417f71280e0e91fc0b Mon Sep 17 00:00:00 2001 From: Jakub <106778416+MarekZegare4@users.noreply.github.com> Date: Thu, 28 May 2026 23:43:45 +0200 Subject: [PATCH] =?UTF-8?q?fix(ui/trail):=20clarify=20export=20menu=20labe?= =?UTF-8?q?ls=20=E2=80=94=20live=20vs=20saved=20GPX?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 'Export GPX' and 'Export saved' were ambiguous. Renamed to 'Export GPX (live)' (RAM ring) and 'Export GPX (saved)' (flash file) so the source of each export is immediately clear. Co-Authored-By: Claude Sonnet 4.6 --- examples/companion_radio/ui-new/TrailScreen.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/companion_radio/ui-new/TrailScreen.h b/examples/companion_radio/ui-new/TrailScreen.h index 9c725c9c..3d7f6df2 100644 --- a/examples/companion_radio/ui-new/TrailScreen.h +++ b/examples/companion_radio/ui-new/TrailScreen.h @@ -229,10 +229,10 @@ private: _act_map[_act_count++] = ACT_LOAD; _action_menu.addItem("Load trail"); } if (!_store->empty()) { - _act_map[_act_count++] = ACT_EXPORT; _action_menu.addItem("Export GPX"); + _act_map[_act_count++] = ACT_EXPORT; _action_menu.addItem("Export GPX (live)"); } if (saved) { - _act_map[_act_count++] = ACT_EXPORT_SAVED; _action_menu.addItem("Export saved"); + _act_map[_act_count++] = ACT_EXPORT_SAVED; _action_menu.addItem("Export GPX (saved)"); } if (!_store->empty()) { _act_map[_act_count++] = ACT_RESET; _action_menu.addItem("Reset trail");