fix a bug in subtitle display on small timeline
This commit is contained in:
parent
2c2caf8f58
commit
0883bc7127
2 changed files with 2 additions and 2 deletions
|
@ -179,7 +179,7 @@ Ox.SmallVideoTimelineImage = function(options, self) {
|
|||
data[index] = color[0];
|
||||
data[index + 1] = color[1];
|
||||
data[index + 2] = color[2];
|
||||
data[index + 3] = color[3];
|
||||
data[index + 3] = alpha;
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -192,7 +192,7 @@ Ox.VideoEditor = function(options, self) {
|
|||
self.results = [];
|
||||
self.words = getWords();
|
||||
|
||||
//Ox.print('VIDEO EDITOR OPTIONS', self.options)
|
||||
Ox.print('VIDEO EDITOR OPTIONS', self.options)
|
||||
|
||||
self.$editor = Ox.Element()
|
||||
.addClass('OxVideoEditor')
|
||||
|
|
Loading…
Reference in a new issue