| 2887 | } |
| 2888 | |
| 2889 | void |
| 2890 | Project::onProjectFormatPopulated() |
| 2891 | { |
| 2892 | int index = _imp->formatKnob->getValue(); |
| 2893 | NodesList nodes; |
| 2894 | |
| 2895 | getNodes_recursive(nodes, true); |
| 2896 | std::vector<ChoiceOption> entries = _imp->formatKnob->getEntries_mt_safe(); |
| 2897 | for (NodesList::iterator it = nodes.begin(); it != nodes.end(); ++it) { |
| 2898 | (*it)->refreshFormatParamChoice(entries, index, false); |
| 2899 | } |
| 2900 | } |
| 2901 | |
| 2902 | void |
| 2903 | Project::setTimeLine(const TimeLinePtr& timeline) |
nothing calls this directly
no test coverage detected