when handling (in/out) point events from the video editor, don't overwrite position with its old value (fixes #768)
This commit is contained in:
parent
26afe7c8f5
commit
4ef5595f6f
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ pandora.ui.editor = function(data) {
|
||||||
annotation: pandora.user.ui.videoPoints[pandora.user.ui.item].annotation,
|
annotation: pandora.user.ui.videoPoints[pandora.user.ui.item].annotation,
|
||||||
'in': data['in'],
|
'in': data['in'],
|
||||||
out: data.out,
|
out: data.out,
|
||||||
position: pandora.user.ui.videoPoints[pandora.user.ui.item].position
|
position: data.position
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
position: function(data) {
|
position: function(data) {
|
||||||
|
|
Loading…
Reference in a new issue