SetBorderless sets the Window to be borderless or not.
(borderless bool)
| 95 | |
| 96 | // SetBorderless sets the Window to be borderless or not. |
| 97 | func (w *Window) SetBorderless(borderless bool) { |
| 98 | C.uiWindowSetBorderless(w.w, frombool(borderless)) |
| 99 | } |
| 100 | |
| 101 | // SetChild sets the Window's child to child. If child is nil, the Window |
| 102 | // will not have a child. |
nothing calls this directly
no test coverage detected