fix a bug in subtitle display on small timeline

This commit is contained in:
rlx 2012-02-19 07:41:19 +00:00
parent 2c2caf8f58
commit 0883bc7127
2 changed files with 2 additions and 2 deletions

View file

@ -179,7 +179,7 @@ Ox.SmallVideoTimelineImage = function(options, self) {
data[index] = color[0]; data[index] = color[0];
data[index + 1] = color[1]; data[index + 1] = color[1];
data[index + 2] = color[2]; data[index + 2] = color[2];
data[index + 3] = color[3]; data[index + 3] = alpha;
}); });
}); });
}); });

View file

@ -192,7 +192,7 @@ Ox.VideoEditor = function(options, self) {
self.results = []; self.results = [];
self.words = getWords(); self.words = getWords();
//Ox.print('VIDEO EDITOR OPTIONS', self.options) Ox.print('VIDEO EDITOR OPTIONS', self.options)
self.$editor = Ox.Element() self.$editor = Ox.Element()
.addClass('OxVideoEditor') .addClass('OxVideoEditor')