From 02c0f67a8da1555dd4582c617d0000dcc39ce804 Mon Sep 17 00:00:00 2001 From: Totoo Date: Mon, 4 May 2026 20:59:48 +0200 Subject: [PATCH] fix menu handling again (#3157) --- firmware/application/ui_navigation.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/firmware/application/ui_navigation.cpp b/firmware/application/ui_navigation.cpp index 77978b4d4..7177270ce 100644 --- a/firmware/application/ui_navigation.cpp +++ b/firmware/application/ui_navigation.cpp @@ -946,6 +946,8 @@ SystemView::SystemView( if (lastmenu && this->navigation_view.get_last_menu_went_deeper()) { this->navigation_view.pop(); this->navigation_view.push_view(lastmenu->producer(this->navigation_view)); + this->navigation_view.store_last_menu_name(lastmenu->displayName); // since we opened it again, store it again + this->navigation_view.set_last_menu_went_deeper(false); // not yet return; } }