MCPcopy Create free account
hub / github.com/OpenDUNE/OpenDUNE / GUI_Widget_MakeVisible

Function GUI_Widget_MakeVisible

src/gui/widget.c:130–136  ·  view source on GitHub ↗

* Make the widget visible. * @param w The widget to make visible. */

Source from the content-addressed store, hash-verified

128 * @param w The widget to make visible.
129 */
130void GUI_Widget_MakeVisible(Widget *w)
131{
132 if (w == NULL || !w->flags.invisible) return;
133 w->flags.invisible = false;
134
135 GUI_Widget_Draw(w);
136}
137
138/**
139 * Draw a widget to the display.

Callers 5

GUI_Window_CreateFunction · 0.85
UpdateArrowsFunction · 0.85

Calls 1

GUI_Widget_DrawFunction · 0.85

Tested by

no test coverage detected