* Process scheduled OnResize() event. */
| 3221 | * Process scheduled OnResize() event. |
| 3222 | */ |
| 3223 | void Window::ProcessScheduledResize() |
| 3224 | { |
| 3225 | /* Sometimes OnResize() resizes the window again, in which case we can reprocess immediately. */ |
| 3226 | while (this->scheduled_resize) { |
| 3227 | this->scheduled_resize = false; |
| 3228 | this->OnResize(); |
| 3229 | } |
| 3230 | } |
| 3231 | |
| 3232 | /** |
| 3233 | * Mark this window's data as invalid (in need of re-computing) |
no test coverage detected