From 29f2358f75dd4b480b8886e4a91014d296aaec91 Mon Sep 17 00:00:00 2001 From: MX <10697207+xMasterX@users.noreply.github.com> Date: Fri, 5 Aug 2022 18:45:18 +0300 Subject: [PATCH] change value of poweroff button press timer see PR #42 --- applications/desktop/views/desktop_view_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/desktop/views/desktop_view_main.c b/applications/desktop/views/desktop_view_main.c index 2b1d61f41..a3aa63707 100644 --- a/applications/desktop/views/desktop_view_main.c +++ b/applications/desktop/views/desktop_view_main.c @@ -16,7 +16,7 @@ struct DesktopMainView { TimerHandle_t poweroff_timer; }; -#define DESKTOP_MAIN_VIEW_POWEROFF_TIMEOUT 5000 +#define DESKTOP_MAIN_VIEW_POWEROFF_TIMEOUT 3000 static void desktop_main_poweroff_timer_callback(TimerHandle_t timer) { DesktopMainView* main_view = pvTimerGetTimerID(timer);