spelling: system

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:48:47 -05:00
parent 979061a875
commit 53b74221f2

View file

@ -328,14 +328,14 @@ struct Layer* window_get_root_layer(const Window *window);
void window_set_background_color(Window *window, GColor background_color);
void window_set_background_color_2bit(Window *window, GColor2 background_color);
//! Sets whether or not the window is fullscreen, consequently hiding the sytem status bar.
//! Sets whether or not the window is fullscreen, consequently hiding the system status bar.
//! @note This needs to be called before pushing a window to the window stack.
//! @param window The window for which to set its full-screen property
//! @param enabled True to make the window full-screen or false to leave space for the system status bar.
//! @see \ref window_get_fullscreen()
void window_set_fullscreen(Window *window, bool enabled);
//! Gets whether the window is full-screen, consequently hiding the sytem status bar.
//! Gets whether the window is full-screen, consequently hiding the system status bar.
//! @param window The window for which to get its full-screen property
//! @return True if the window is marked as fullscreen, false if it is not marked as fullscreen.
bool window_get_fullscreen(const Window *window);