| 259 | |
| 260 | |
| 261 | void StyledRenderable::DrawTooltip(DrawingContext& context) |
| 262 | { |
| 263 | if (tooltip_) { |
| 264 | auto tooltip = Manager->GetRenderable(tooltip_.Handle); |
| 265 | if (tooltip) tooltip->Render(context); |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | |
| 270 | void StyledRenderable::UpdateStatusFlags() |
nothing calls this directly
no test coverage detected