diff --git a/source/UI/js/Video/ClipPanel.js b/source/UI/js/Video/ClipPanel.js index cedc7edb..43e430e4 100644 --- a/source/UI/js/Video/ClipPanel.js +++ b/source/UI/js/Video/ClipPanel.js @@ -93,21 +93,24 @@ Ox.ClipPanel = function(options, self) { { align: 'right', id: 'index', + format: function(value) { + return value + 1; + }, operator: '+', title: Ox._('Index'), visible: false, width: 60 }, { - id: 'id', - operator: '+', - title: Ox._('ID'), format: function(value, data) { return data.annotation ? data.annotation : data.item; }, + id: 'id', + operator: '+', sort: function(value, data) { return data.sort; }, + title: Ox._('ID'), unique: true, width: 60 }, @@ -117,11 +120,11 @@ Ox.ClipPanel = function(options, self) { operator: '+', sort: function(value, data) { return data.sort; - }, + } }, { - id: 'title', format: self.options.formatTitle, + id: 'title', operator: '+', sort: function(value, data) { return data.sort;