SetResizable sets whether the window is resizable.
(state bool)
| 92 | |
| 93 | // SetResizable sets whether the window is resizable. |
| 94 | func (w *Window) SetResizable(state bool) { |
| 95 | |
| 96 | w.resizable = state |
| 97 | } |
| 98 | |
| 99 | // SetCloseButton sets whether the window has a close button on the top right. |
| 100 | func (w *Window) SetCloseButton(state bool) { |