| 2033 | } // TrackerPanelPrivate::updateTrackKeysInfoBar |
| 2034 | |
| 2035 | void |
| 2036 | TrackerPanel::onTimeChanged(SequenceTime time, |
| 2037 | int reason) |
| 2038 | { |
| 2039 | _imp->updateTrackKeysInfoBar(time); |
| 2040 | |
| 2041 | std::vector<TrackMarkerPtr> markers; |
| 2042 | _imp->context.lock()->getAllMarkers(&markers); |
| 2043 | |
| 2044 | for (std::vector<TrackMarkerPtr>::iterator it = markers.begin(); it != markers.end(); ++it) { |
| 2045 | (*it)->refreshAfterTimeChange(reason == eTimelineChangeReasonPlaybackSeek, time); |
| 2046 | } |
| 2047 | } |
| 2048 | |
| 2049 | NATRON_NAMESPACE_EXIT |
| 2050 |
nothing calls this directly
no test coverage detected