* Make the widget visible. * @param w The widget to make visible. */
| 128 | * @param w The widget to make visible. |
| 129 | */ |
| 130 | void 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. |
no test coverage detected