diff --git a/applications/services/gui/gui.h b/applications/services/gui/gui.h index a59a4ff6a..1b5987eda 100644 --- a/applications/services/gui/gui.h +++ b/applications/services/gui/gui.h @@ -132,8 +132,6 @@ Canvas* gui_direct_draw_acquire(Gui* gui); */ void gui_direct_draw_release(Gui* gui); -uint8_t gui_get_count_of_enabled_view_port_in_layer(Gui* gui, GuiLayer layer); - #ifdef __cplusplus } #endif diff --git a/applications/settings/desktop_settings/scenes/desktop_settings_scene_start.c b/applications/settings/desktop_settings/scenes/desktop_settings_scene_start.c index 9c721b9c9..6629930c3 100644 --- a/applications/settings/desktop_settings/scenes/desktop_settings_scene_start.c +++ b/applications/settings/desktop_settings/scenes/desktop_settings_scene_start.c @@ -167,14 +167,9 @@ bool desktop_settings_scene_start_on_event(void* context, SceneManagerEvent even break; case SCENE_EVENT_SELECT_AUTO_LOCK_DELAY: case SCENE_EVENT_SELECT_CLOCK_DISPLAY: - consumed = true; - break; case SCENE_EVENT_SELECT_BATTERY_DISPLAY: consumed = true; break; - case SCENE_EVENT_SELECT_CLOCK_DISPLAY: - consumed = true; - break; case SCENE_EVENT_SELECT_CHANGE_NAME: scene_manager_next_scene(app->scene_manager, DesktopSettingsAppSceneChangeName); consumed = true;