| 440 | } |
| 441 | |
| 442 | int |
| 443 | TrackerContext::getTimeLineFirstFrame() const |
| 444 | { |
| 445 | NodePtr node = getNode(); |
| 446 | |
| 447 | if (!node) { |
| 448 | return -1; |
| 449 | } |
| 450 | double first, last; |
| 451 | node->getApp()->getProject()->getFrameRange(&first, &last); |
| 452 | |
| 453 | return (int)first; |
| 454 | } |
| 455 | |
| 456 | int |
| 457 | TrackerContext::getTimeLineLastFrame() const |
nothing calls this directly
no test coverage detected