forked from 0x2620/pandora
fix copy clip
This commit is contained in:
parent
82549c5d7a
commit
e761ee692d
1 changed files with 1 additions and 1 deletions
|
@ -415,7 +415,7 @@ pandora.ui.mainMenu = function() {
|
||||||
type = 'clip', clips;
|
type = 'clip', clips;
|
||||||
fromMenu = true;
|
fromMenu = true;
|
||||||
function formatClip(clip) {
|
function formatClip(clip) {
|
||||||
return clip.annotation || clip.item + '/' + clip['in'] + '-' + clip.out;
|
return clip.annotation || (clip.item||ui.item) + '/' + clip['in'] + '-' + clip.out;
|
||||||
}
|
}
|
||||||
if (pandora.isVideoView() && !pandora.$ui.browser.hasFocus()) {
|
if (pandora.isVideoView() && !pandora.$ui.browser.hasFocus()) {
|
||||||
clips = [formatClip(ui.videoPoints[ui.item])];
|
clips = [formatClip(ui.videoPoints[ui.item])];
|
||||||
|
|
Loading…
Reference in a new issue