1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-13 13:09:49 +04:00

Fix comments

This commit is contained in:
Astra
2024-12-25 18:39:57 +09:00
parent 31365cb170
commit 701969e334

View File

@@ -100,13 +100,13 @@ void gui_remove_framebuffer_callback(Gui* gui, GuiCanvasCommitCallback callback,
*/
size_t gui_get_framebuffer_size(const Gui* gui);
/** Enable lockdown mode
/** Set lockdown mode
*
* When lockdown mode is enabled, only GuiLayerDesktop is shown.
* This feature prevents services from showing sensitive information when flipper is locked.
*
* @param gui Gui instance
* @param lockdown true to enable lockdown mode
* @param lockdown bool, true if enabled
*/
void gui_set_lockdown(Gui* gui, bool lockdown);