| 39 | } |
| 40 | |
| 41 | bool Window::canResize() |
| 42 | { |
| 43 | return this->hasFlags(WindowFlags::resizable) && (this->minWidth != this->maxWidth || this->minHeight != this->maxHeight); |
| 44 | } |
| 45 | |
| 46 | void Window::capSize(int32_t newMinWidth, int32_t newMinHeight, int32_t newMaxWidth, int32_t newMaxHeight) |
| 47 | { |
no test coverage detected