diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e7ab7946..6322f6fbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ ### Fixed: - Bad KB: Fix modifier keys with HOLD/RELEASE commands (by @WillyJL) +- Desktop: Fix lock screen hang (#438 by @aaronjamt) ### Removed: - Nothing diff --git a/applications/services/desktop/scenes/desktop_scene_locked.c b/applications/services/desktop/scenes/desktop_scene_locked.c index c15ca4e10..bf9b027d6 100644 --- a/applications/services/desktop/scenes/desktop_scene_locked.c +++ b/applications/services/desktop/scenes/desktop_scene_locked.c @@ -101,8 +101,7 @@ bool desktop_scene_locked_on_event(void* context, SceneManagerEvent event) { break; case DesktopLockedEventUpdate: if(desktop_view_locked_is_locked_hint_visible(desktop->locked_view)) { - notification_message( - desktop->notification, &sequence_display_backlight_off_delay_1000); + notification_message(desktop->notification, &sequence_display_backlight_off); } desktop_view_locked_update(desktop->locked_view); consumed = true;