| 1800 | } |
| 1801 | |
| 1802 | void |
| 1803 | TrackerNodeInteract::onAllKeyframesRemovedOnTrack(const TrackMarkerPtr& marker) |
| 1804 | { |
| 1805 | for (TrackerNodeInteract::TrackKeysMap::iterator it = trackTextures.begin(); it != trackTextures.end(); ++it) { |
| 1806 | if (it->first.lock() == marker) { |
| 1807 | it->second.clear(); |
| 1808 | break; |
| 1809 | } |
| 1810 | } |
| 1811 | _p->publicInterface->redrawOverlayInteract(); |
| 1812 | } |
| 1813 | |
| 1814 | NATRON_NAMESPACE_EXIT |
| 1815 | NATRON_NAMESPACE_USING |
nothing calls this directly
no test coverage detected