diff --git a/source/UI/js/Video/VideoAnnotationPanel.js b/source/UI/js/Video/VideoAnnotationPanel.js index 8b528bf9..b11e4b25 100644 --- a/source/UI/js/Video/VideoAnnotationPanel.js +++ b/source/UI/js/Video/VideoAnnotationPanel.js @@ -584,7 +584,7 @@ Ox.VideoAnnotationPanel = function(options, self) { {key: Ox.SYMBOLS.escape, action: Ox._('Cancel/Deselect')}, {key: Ox.SYMBOLS.delete, action: Ox._('Delete')} ].concat( - Ox.filter(self.options.layers.map(function(layer, i) { + Ox.filter(self.options.layers.slice(0, 9).map(function(layer, i) { return layer.editable ? {key: i + 1, action: Ox._('Add {0}', [layer.item])} : null;