* Process all invalidation of highlighted widgets. */
| 3260 | * Process all invalidation of highlighted widgets. |
| 3261 | */ |
| 3262 | void Window::ProcessHighlightedInvalidations() |
| 3263 | { |
| 3264 | if (!this->flags.Test(WindowFlag::Highlighted)) return; |
| 3265 | |
| 3266 | for (const auto &pair : this->widget_lookup) { |
| 3267 | if (pair.second->IsHighlighted()) pair.second->SetDirty(this); |
| 3268 | } |
| 3269 | } |
| 3270 | |
| 3271 | /** |
| 3272 | * Mark window data of the window of a given class and specific window number as invalid (in need of re-computing) |
no test coverage detected