diff --git a/source/Ox.UI/js/Video/ClipPanel.js b/source/Ox.UI/js/Video/ClipPanel.js index b9175cc1..906fc6ef 100644 --- a/source/Ox.UI/js/Video/ClipPanel.js +++ b/source/Ox.UI/js/Video/ClipPanel.js @@ -192,7 +192,12 @@ Ox.ClipPanel = function(options, self) { ? 'enableItem' : 'disableItem'; self.options.view = data.checked[0].id; self.$menu[action]('split'); - self.$menu[action]('join'); + self.$menu[ + self.options.editable + && self.options.selected.length > 1 + && data.checked[0].id != 'annotations' + ? 'enableItem' : 'disableItem' + ]('join'); self.$menu[action]('replace'); self.$panel.replaceElement(1, self.$list = getList()); that.triggerEvent('view', {view: self.options.view});