| 444 | // ----------------------------------------------------------------------- |
| 445 | |
| 446 | void Window::PrivateData::setResizable(const bool resizable) |
| 447 | { |
| 448 | DISTRHO_SAFE_ASSERT_RETURN(! isEmbed,); |
| 449 | |
| 450 | DGL_DBG("Window setResizable called\n"); |
| 451 | |
| 452 | puglSetResizable(view, resizable); |
| 453 | } |
| 454 | |
| 455 | // -------------------------------------------------------------------------------------------------------------------- |
| 456 |
nothing calls this directly
no test coverage detected