| 1272 | } |
| 1273 | |
| 1274 | void InputEditorModel::moveInputs(int oldIndex, int newIndex) |
| 1275 | { |
| 1276 | SingleInput si = movie->editor->input_set[oldIndex]; |
| 1277 | movie->editor->input_set.erase(movie->editor->input_set.begin() + oldIndex); |
| 1278 | movie->editor->input_set.insert(movie->editor->input_set.begin() + newIndex, si); |
| 1279 | } |
| 1280 | |
| 1281 | bool InputEditorModel::rewind(uint64_t framecount) |
| 1282 | { |
no test coverage detected