fix highlight color on timeline for newly created annotations

This commit is contained in:
rolux 2018-10-09 19:44:26 +02:00
parent d3d7427bfe
commit 5b9afde7b3

View file

@ -1719,6 +1719,12 @@ Ox.VideoAnnotationPanel = function(options, self) {
// id might have changed if new annotation was created
if (annotation.id) {
self.options.selected = annotation.id;
var layer = Ox.getObjectById(self.options.layers, annotation.layer)
var item = Ox.getObjectById(layer.items, annotation.id)
if (!item) {
layer.items.push(annotation)
self.annotations = getAnnotations();
}
}
if (getSelectedLayer() == self.options.subtitlesLayer) {
updateSubtitles();