diff --git a/source/UI/js/Video/AnnotationFolder.js b/source/UI/js/Video/AnnotationFolder.js index fab2bb0f..b889c46f 100644 --- a/source/UI/js/Video/AnnotationFolder.js +++ b/source/UI/js/Video/AnnotationFolder.js @@ -318,10 +318,14 @@ Ox.AnnotationFolder = function(options, self) { } that.triggerEvent('add', {value: data.value || ''}); }, - blur: function() { - // the video editor will, if it has not received focus, - // call blurItem - that.triggerEvent('blur'); + blur: function(data) { + if (data.id[0] == '_') { + changeAnnotation(data); + } else { + // the video editor will, if it has not received focus, + // call blurItem + that.triggerEvent('blur'); + } }, change: changeAnnotation, 'delete': removeAnnotation,