diff --git a/applications/services/desktop/animations/animation_manager.c b/applications/services/desktop/animations/animation_manager.c index 041ef2d11..3bc568d6a 100644 --- a/applications/services/desktop/animations/animation_manager.c +++ b/applications/services/desktop/animations/animation_manager.c @@ -557,8 +557,6 @@ static void animation_manager_switch_to_one_shot_view(AnimationManager* animatio view_stack_remove_view(animation_manager->view_stack, prev_view); view_stack_add_view(animation_manager->view_stack, next_view); if (settings->sfw_mode) { - one_shot_view_start_animation(animation_manager->one_shot_view, &A_Levelup1_128x64); - }else { if (stats.level <= 20) { one_shot_view_start_animation(animation_manager->one_shot_view, &A_Levelup1_128x64_sfw); } @@ -568,6 +566,8 @@ static void animation_manager_switch_to_one_shot_view(AnimationManager* animatio else { furi_assert(0); } + }else { + one_shot_view_start_animation(animation_manager->one_shot_view, &A_Levelup1_128x64); } free(settings); }