diff --git a/source/UI/js/Video/AnnotationPanel.js b/source/UI/js/Video/AnnotationPanel.js index 0163bfdc..76573479 100644 --- a/source/UI/js/Video/AnnotationPanel.js +++ b/source/UI/js/Video/AnnotationPanel.js @@ -246,7 +246,7 @@ Ox.AnnotationPanel = function(options, self) { self.$editMenuButton = Ox.MenuButton({ items: [].concat( self.options.layers.map(function(layer, i) { - return {id: 'add' + layer.id, title: Ox._('Add {0}', [layer.item]), keyboard: i + 1 + ''} + return {id: 'add' + layer.id, title: Ox._('Add {0}', [layer.item]), keyboard: i < 9 ? i + 1 + '' : null} }), [ {},