| 111 | } |
| 112 | } |
| 113 | |
| 114 | drawTextVisualEntries(drawingContext, layout.getVisualEntries(), /* predraw */ false); |
| 115 | } |
| 116 | |
| 117 | void TextLayer::onBoundsChanged() { |
| 118 | Layer::onBoundsChanged(); |
| 119 | setNeedsLayout(); |
| 120 | } |
| 121 | |
| 122 | void TextLayer::onChildInserted(Layer* childLayer, size_t index) { |
| 123 | Layer::onChildInserted(childLayer, index); |
| 124 | setNeedsLayout(); |
| 125 | } |
| 126 | |
| 127 | void TextLayer::onChildRemoved(Layer* childLayer) { |
| 128 | Layer::onChildRemoved(childLayer); |
| 129 | setNeedsLayout(); |
no test coverage detected