| 454 | } |
| 455 | |
| 456 | int |
| 457 | TrackerContext::getTimeLineLastFrame() const |
| 458 | { |
| 459 | NodePtr node = getNode(); |
| 460 | |
| 461 | if (!node) { |
| 462 | return -1; |
| 463 | } |
| 464 | double first, last; |
| 465 | node->getApp()->getProject()->getFrameRange(&first, &last); |
| 466 | |
| 467 | return (int)last; |
| 468 | } |
| 469 | |
| 470 | void |
| 471 | TrackerContext::trackSelectedMarkers(int start, |
nothing calls this directly
no test coverage detected