From 98edb562bd3aee7f31e7efa22444a9c80857f1e1 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Sun, 18 Feb 2024 01:53:08 +0000 Subject: [PATCH] No exit confirm pls --- applications/system/hid_app/hid.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/applications/system/hid_app/hid.c b/applications/system/hid_app/hid.c index 699f7ca5f..cd4f75d2e 100644 --- a/applications/system/hid_app/hid.c +++ b/applications/system/hid_app/hid.c @@ -34,7 +34,8 @@ bool hid_back_event_callback(void* context) { furi_assert(context); Hid* app = context; FURI_LOG_D("HID", "Back event"); - scene_manager_next_scene(app->scene_manager, HidSceneExitConfirm); + app->view_id = HidViewSubmenu; + view_dispatcher_switch_to_view(app->view_dispatcher, HidViewSubmenu); return true; }