From 78e2adbf5c9123cd2c7ffe96fe23d96a4bad6ea3 Mon Sep 17 00:00:00 2001 From: MX <10697207+xMasterX@users.noreply.github.com> Date: Mon, 12 May 2025 01:06:13 +0300 Subject: [PATCH] fix desktop anim switch override by favourites --- applications/services/desktop/views/desktop_view_main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/applications/services/desktop/views/desktop_view_main.c b/applications/services/desktop/views/desktop_view_main.c index 9ea144364..73210a5af 100644 --- a/applications/services/desktop/views/desktop_view_main.c +++ b/applications/services/desktop/views/desktop_view_main.c @@ -73,8 +73,9 @@ bool desktop_main_input_callback(InputEvent* event, void* context) { } else if(event->key == InputKeyOk) { if(furi_hal_rtc_is_flag_set(FuriHalRtcFlagDebug)) { main_view->callback(DesktopAnimationEventNewIdleAnimation, main_view->context); + } else { + main_view->callback(DesktopMainEventOpenFavoriteOkLong, main_view->context); } - main_view->callback(DesktopMainEventOpenFavoriteOkLong, main_view->context); } } } else {